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:12119
Vulnerability from csaf_redhat - Published: 2026-05-06 07:35 - Updated: 2026-06-28 22:55A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_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.18.39 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.18.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.18.39. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:12118\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:12119",
"url": "https://access.redhat.com/errata/RHSA-2026:12119"
},
{
"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_12119.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.39 security and extras update",
"tracking": {
"current_release_date": "2026-06-28T22:55:04+00:00",
"generator": {
"date": "2026-06-28T22:55:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:12119",
"initial_release_date": "2026-05-06T07:35:33+00:00",
"revision_history": [
{
"date": "2026-05-06T07:35:33+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-06T07:36:10+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55: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.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Ae5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ab174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Aa0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ab73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Ac9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977968"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Afd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Ac6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Aa5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Ab68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991263"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777458396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Ac318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Ad2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777377906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Afd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ae653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Ad8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Af0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977061"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Aaeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3Aa4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Ab1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Ad70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Aac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976662"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Afc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Ade6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Aad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ad3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977968"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Abb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991263"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aeb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777458396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3Ac93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3Ac0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ab505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Af8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977061"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Afbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Afbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Aa57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Aa57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Af83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3Aba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Afb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976662"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ab8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ab5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3Ab2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Aae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ab5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977968"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aa9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ace518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Ae42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Ae93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Aafef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Abf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3A49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991263"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Afe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Afea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777458396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Ac57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Ad94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777377906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Ac4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ac969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Af91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3Ab960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977061"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"product_id": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978449"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Aeacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ac906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Ab415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960136"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Ae8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Aad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976662"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Ad5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Aa081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ad375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ace588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977968"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959874"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978507"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Acb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Afafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Afd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Aaec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel9@sha256%3Aae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991263"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Af48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777458396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Ad07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3Af0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977230"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976684"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Ad44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977061"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976662"
}
}
}
],
"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:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_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.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_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-05-06T07:35:33+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12119"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_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.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:455fbaafaa9d43d8776c23166ba78a9a8f8fa825653e6eebfad15bd2eb836019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5cb85447a61598de631f0eb31e535beaad33e821a5953f6cdef382ec8dbc8e4c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:b5ef3b8873f207ae68f81999fab754281998963e79666f9d39944760b49a7bce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d375d0a5fe7c02dbf87f51a47f00b1fed2d202fd552671ff3f66122ef30e6ea8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3ead270b5e651ad28850f0448d701079a339859421ebaaa8dfb3ec074d996f66_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:7ad9d506193bf3141ad8acab798af3c2d8a90610e1952b7d4e26ae57688f0245_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:a081244f2d6fe252edcbd0fc683e8f001a0e020f6ef8bcb14840b72524b4af1a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c9bbb3e9eb7c035304a040a8feb2d6aee84090fe23340910cff1ceacf61e4056_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:7a8be0226312f99c0e028a335a3d3b41dd4368ef2ae7e6374b4eca456ba28dbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:8a5a9c868892113c74a7adf2c89a7fa65fdca420df0f6b474498884db86016e5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:ce588556f1a6468421940461d64f183fb35f0114bc0069a07929389fd031d1bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3bfdac623653bc0484af9bfac2c12f5145fde4f857a1b93cf9973ceeb74bbfe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:193e3faba2100fa7d606cee1c359e84a2085583343a878baa2ef5f728535a979_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:59cc354fb6bb76d6630bde1156639d4f37a405652fec479567b17c46441d8358_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f48c6c941f9dc0858a59dccf0b1f4b82e4a7d52ea88e408f0a18951c4d2550cd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fea585def705ad83f5e2b0cd8fe6c3fee507e7c1a3d41c1af6cf11586266b719_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:2b53bca42b2e701a6bec306460fd2d796f01af733b84b28c7e4b93e35fcbe17b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d07443fdb671662032a4528bb2b06420aa74dca3b607ba2e3ac12d8a6389f462_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ee32bf86d010ea8d3b0ba9abcf68f76e47f3a9229be3a580872e228fcb23dd36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:f91d4765a64bd3d60836375612dca174c869496b4213bbbb123fc5324b733afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:25000077776757fd46aa82464b734e6d0244770bde809d7fa43465a563d678e1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:49bd0b670bae19a31629e92805fd17416d99f6a56e68c19d8ace6157387e6063_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:5e577eca87366470b2ddae310fc483bb3340606eea4ea3a7bdc414640a2c1ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/metallb-rhel9@sha256:c969254151b9347fb9cb2454d8136ebd3b7e7ec48abce1f852a2aebd297af2c8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:27fb5a54aab6d8ed2f8de013cd693c584a2f5dab3babd42de7275b2b62f98a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:bb176062a65a9f71b9d0ec30fa48020aa180b27ee34d65d3557e6e6ef06d529b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:ce518bb2be4e0919fe10bc6040c0a6b2dbc051520e7eb90fc8e54749af1cf242_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:fd719e9e29a4bc8b2f439ba4fe4496d48b6e10896094c21df592275cf7ce4437_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:04da30c2bdfecb75f1cb613dae6373972d3aaea635d765fb7b470842886fa7db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:147080edf2d4fbf2246c410f2c8c77f1b7eab5ab575b83e350c9e4fcf22f3c90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:6ef4780f2eafe7772c6e599e0f480b669f9963c2df0200e3129e5bc54843188e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:9f3aca3aca75849124e1293ee4529f8a371f429a53d9764321e97f3bbf630196_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c318ae299401ade657ca6971cdc76f5437b5c523c0b74eba3061ec95772f6a0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:c57f3cef78f88b9e57506d955d84f14e5c865ccac529431b4c8126fd46ed5af2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d2c1ec9c158241eb3b5c5e2eb8d4369ef72c9bb8f3c2b607b7c33d5e5ee9a1bf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:d94bae845eedf5736e38420c6c989d63d836f5d8a1f1f734a16b79924926575f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c272c39c7ef7c2c50ef6f952881dd0ca438865717c6e9872e49169249c2754d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:4ce3518136af20fc50eee638d8e4d8e26e6b7d39e59e85837a53d200708a93a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:e5c81f64c24daf664f3ad90c510a06184246fa34e89c996a98c3b8dcaac5f6a8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:14e2935b0cdf5b923dff6b1c54a6f81f63c37b1735e7d2dcfd29d6d9c78abb26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:c6228239550a5d466634393db1ae7d96f1f6e5af2c3b974f600e2ced955bc2b3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:e93752a29302d9869b62b0e01ae0e7b0f81542eae556938a38971be75faf771c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd1255785b604364707fd81c19f80f0e87a8d989072a6ed902b1abbc52a6dc59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:0a4250ec42ec09c81d249e688afe78c9ee553619d1e91e5e8cc4b93ece232c70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b174b2d2a62e48da898cd3efb8a8ad111d79bacfc10dc8a03cdaef14d99fef96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:b8127348feff6f9c26b4b289f00f0830a0ae2f338312eb4a69b7272d5ddca3d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fc7c403c83f89dfffecd45a02324246fb56511760c4f57f41841965dc8e65f52_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:0425553e7e541173610fde81690f30e269fc3004c0e43926cbafff9bc2f57e8c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2b64013f845e4f6c4b3a070be56007554454684b529a53e994884a28b38899a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:706d812093e4bcbfa6f720cf1eea24282ecdb5efe2cb51c4fd214064da6de225_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:83b8dee64a009741c901b7ccaee8f76399294855fc925481bd204b254415c1ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:543a2e8654829b30e35c183cdd27b6762cacef3edf7b869375edffaafd5019af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:55b7717a83e7cdd1820e4e7f55ad6ff64c8109e3aa0820a765dc7df5f6b715d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:80643a3e0a56a3ba4b97c51f00c07609b8a0588bfa41fa4bb9c55b874a333f95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:de6ad5df9cc1a8560dab9d839976e5dce752f7070bc49c969bf295b82ed915ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0c3e72fa750356a24554a93a44432b5f01b214fbf6d8906d6cdc21668b152418_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:4ef8e4c19b654c79350cc593e702fff236a14765c4546b9a09ec7bb581e09f06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b5c52688b356079ef4623fe19f3c8c1b91dfe8238d70419a713b93649ff2fbb9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b73a90bb65dd237cd64f39b2f02b59ea096a4dc23a860f92c98d8e73c5fed6a2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:241566b633f35d6c91f623e68c0f65ac739a9b51415044ce7cb98bebeb597d4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:344cc282545fa33be767a767f2d68ea7a1cc12b27aac4a8edfbe1ba9f8c4fed3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a0a291d8c03b8ee085da84e5fb6f017462ff8104651f3c0f9fa642e049e14020_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:ad6889e93b8245275afd6f5f529b814f153eaffc4e62ceebaf68959958d6d0cb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:09de5d5d2005d9c61b3a92daab6ed2a738bb03d618bfebbe28ce8db7abb4ddad_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:319ab784e7a1cca6002cf1d27e7632d94bd4508df29c7342a740df0978d24f5c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:59daeeb2624a86cb11a5837a4ea3be038676b7484c7ca44d41dced2cf355002d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:8ce671b2c6a745f7b11744fb172ee74e0b770661a5c7824bb40024095b791931_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:0e8af5a8ba7faef6dad9598bf9b452b17a7b44900218cabe0f501c500bf01430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:298c6c1778465f11e6c4a87ac5af7653e757e0ae28abb3274217be560546610a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:472b6378f4c5b98e9b89e2108080fdd7b5e2e0ed3a6e6582c8f4908d16a07d28_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:b2c26922aa38b79a274bbb5e9e8559d147386088c0d676beed82132358c0c284_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:37f4a0c66441d96d3fd177291e67b9b06417da7e93cfd081ea1848db08616c44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:596d0526a4811f0e7d552c7483aaee7f3f17421e664867966c8951afd9adfe5d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:86ed181d2d65e8626f1a7f105f2c4433b773d5bf8cbb2e815a0e47b49644fdbe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:8f1f2d6f8468d9ee1108a7f9ac614eedc1610cdf80aac8c32c9395d881d61322_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:05782487e1ba1a7950b27bae228796b233f26fe9041a9076af967db8a4b2591c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:39a576f80b237e0ceee72cf92eb023f5f687cd23da73cef0256fd5909daaf61b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:43cc3b3d1ab250522cec2069d90ca3dcbf5ff9486466ab4cafd066be8f381c42_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:d5befb00ee7908438be6f0103de621bac92772807ff59954b8a05287b8e53035_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:0cb366a7f6a6eae3acba6f25084003b01f69e26c6a09e4d79840b7ecd9a1d74f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:41927dc6dabda6dd12eac83970e62cc489291552916c3472dee5af1348684464_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:9c6894f50357006abafb826e18fbae647c406fb58c55369d7efb441c12cc8bc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:afef1d9ee8e8d945597d7f9da0fb53e27ff97896178fc234a96fc0caeeec2a94_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:0b53b485d641407b73a63aa766cbd8797070b2ead2034c53dd74a020698cc5cb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:921e2f80aa495614362a56fba14c40f933e49912f6dfbeee0bdbd6e02193c293_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:9cd2eb3151d6c23dd67924e6f86857965393e0fdda0a5e2be74702b2519a2d52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:c93e71c5a90e5e5de0c2eb7585f5e9ed45fbdac4d8a80aa1c21d559f4e710adc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:3e773c55a1e7f95cca479f791666938cd858f55aece94f7772ad18a1da8ddc4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:6cb7c0fda50b306d71011094773bb99b92bc683ff07ce65f490232b8d98e3e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a5061b81ff01ff1d8cb3bb1dad277d827a8da7b2a829961bf443dc9d14ea8b6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:bf45beb97cf3c1fa4d1da2dc6cfb213a0f06fabd81f0ddd9923027397f855315_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1de89e3b305d3338984b3e406f9d1a0474123316187ac4e274826c0715189e41_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:c4f0625bf1b9cbf424199d34c1df6bee2384bc4e927cdc9ba186b90c737d3416_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:fd49dd203a9388dd6181d590b9ced12d29d9f532b3dc775d1554541e77587822_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:1e823d90e7e518361736d41a6f25bc14e8fd9e2768aee4a30b2230c23acc37b4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:3047322d341f277552708eaa0a28ba53d06e8dad9f478f1672dc3a97e7e46656_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:9cc69b88fcec462b1e476c040ec7dc9a3db5e14cb2186721d42415303e230733_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4255af1bc1ce69febcb361d46b7c033c81141d4858d19d1280b4c34f9e8dced7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:4f4af4419d01db1916b9d8aee8cb413d648b4da3bc5c2bef82d9c9f2f2e31ded_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:aec7f16a186ee89ed3dac4a199b48f7698c85b2365006dfea554a2f73270078b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b68244eccdb67a5b67b9d932c15567da8c7e3e954034c5d347ffee65845120a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:676fdc5c2d5454407d4645ecf42f59bca81ad3ce1a0dfbbad680619c985dcc30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9096065f000a9957647eb1019c5add1714a01d9c1d1ff208c943d14f33dc5c6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb3a92127fe7b7c559643040a16e52ba6f6b83dee78fafdaae421ebb3462135b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:fe92a3ba51b894f958c84a5878f3b9c184ad540630c4216614d6349a302d0cbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:51a949fee67b361079c0b8a4b4fd623cb8e0ca10dd214b3e38d13fd352742060_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:61689dfa176f90b8a044519646b4ca73d39955ed15f01cef4e82e0759626201a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f548dd548b926a70e39574c52e5f276f0dc29acf4b4b2f099564b9e4b4344346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f7143c30838d8b4ea72cc46b4a448baec3c9ea3f0b2dd6a182a0305f715ad431_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:377cf0a041ed83dc3c21078b152842412c4e995c9194b40930baaf3c4ccf10e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3b3d23caaed6b0dd2507607d24438c0d51bb36545ba66b5c4422ceef9b9f8b14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:9e1643b38fc43521dcaf09441f590d3fdf33859f8b5f4f69d03218daf3ff5ba8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a9deb9be96b4c226aeae56ab661054921f0c7bd3921614efee7c36da86b9fb11_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1c4a68b41993e20233b85ae0aa045185afd1ff962536a769060f2988d82ce3c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:29b3d0a2f03d11a0178c863385db0292489233456ec3b3391a473c59c5c62e55_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8331f858177a9d14262f3b2afa4bc1be20236648c8d1b6e8524694f851cf5cfc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:cb9ebc525b3a7346cab1609d8b55e46eef6d26b7c91bab401c58efe0b4e8727e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:242ccbbaba5184703729b780d73b54b9f6e31c4628683fb69973d51c88bb5ffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:54bc8d5ff2f0360f6e866b60268b67b06af6f53b07a638837852f8365cc2ec1c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:e42cf945d40af8ace54bd428d81b344665f794948f9af324f5f9d51310a8f3e3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:fafefb078e27148b48af6ca4f57866493d86c7d4cff31ed9ccf31a14bcc9a2a5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:49c48b65379eeea6749f7703ef3a17414c675c8cefb2cea8bbd063e998aa4d3c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:8693fbb80a3c21739eb25f6d4517b4a75db8dcf6277dc77d62149606c7dca106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:95ca0b06b7f624d2f75962880b46271391341bcf01b50574097c3b0035f7ddd5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-sdk-rhel9@sha256:ae729d3271ff5f6d79bcaa924b911c97009551fa56a5e97be4e9107715e7a481_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:0311a8d531c55a56940cea3e36ee3d0cff353ad691ed26d02b38726e0b0adf62_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:65a3e452853333b2bea8ab027d76fe025c2e89b941cde031bed51c7f0ad02322_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f83e10dc053144bd9d529e52980d6fbde253ae52ca2f6a2f78eb0e237b75fc7e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b758b648e5ceec2447cce5f1f18ebaae05afff7ede3d30d5df4917734928640_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:33ad5cecfffb4d39078c1b5ca52be24747f30bcf1d1e9076c5e8f5a0e1d97a99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4f934dd35422ad5b80502996edade87d25c737dc614f4fd08878109a59e2f60d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:1e340c9a0087c72119bc3ad03d2625747e7dd2e1f7c64d833b92f9ffc10ec9bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:76b8604e9734bf74124b7b3aac9e8cb91cfa9271d2d16efa929cf6e26da7f14c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b505bb36621bc18cfd521d3a9f46549cf49848c5c161a0ced9b9d5d922474700_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:e653a0e8877430e11b7afd0f4be178361ea5c34c10956a2b7a320f64156bb543_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:18998c8e51d5be4259e11716d9a69d62ed0111b1ef480da0f1613b2c8ee48941_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:b960458aab93abd41d6f55f0201ad8d96f31e9996e685388ee3d617dd643646f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:c0912965ffb7a4bc8792cfad76eca0a7122677efea986ed0af23bd98675bb340_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:f0c53afa8a340435126f08033e7b15c6a808780d58a8b8ce9215cee063b62d0f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:0e01cd9e54290f802442b4ce6dbc61756fbc2fe6c770ec98dfc72c9a42ff585f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:201e875325bcfb43d78ad3d28b1d76ec063c26854dedcf6dc342a3b6330503a4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:43f26d17e445e094154b4b1a2c8e75f4d8587a6ff2587663975f53180c80ab98_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:d44645091e6bba375f4d37fb6afdc3d21886cce15c981603258db1c875a1dedd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:017a2c09ffa2172bac87794fb2761ff35ae51b1fe1584ba6888682100afda8a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:0b554be34a827469de366c836fae9b4909368b1b67d2f70e182cc7fd45c4e6d6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:4f685dd4bb0dd742792a806d98e84b2271d86a110340dcaeb0655ed350a57824_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:f0103f34dfaca9a1bd302ddaaba00985b6337bc66528cab5977f94efadc91d16_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:0d80ce2dbba6e1d1ea9281dcee7023aeec502ffb246dd54d2235d8c488889baa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:44c205bbf1da566867142bef24dda2008bb9b101ab0a4ba464fc5aac129aece7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:d8fb6f7fc12a25d3b7458074ff0999800b69504700291d62c28de06236fd96cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f8852a9d901c421e4838b792de298124ed9276ca44540e472b9bf3f4417760e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7a29701642eabc1950b8b03c7f042034d136f82a7982cf4c551343276823b720_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:7ad2470e0be63d20f6405b2a28db09bf504359c80151e7c794737a6b24301d97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:eacd08e4e93d7b7b03702f90a183dc48efa8037eb62cc742a7d363514ac80d87_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:380d0d6ff9db75fb0bb63cd011baf0cc042e9bbefa4e7799ab295e0032e62536_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d6a44dcddcabda8c9252258138e1654904edda809225ab8825bf98bcba412c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:ae0afe671631ab8e062bbdd1f2129299e14da450da34ddb2f62f8ce8596b3f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:0938dd5d725d33b05ebf8c5757fc78e464a11f96aa195d3ac448959016044d78_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:31d7d6ef608906425573c22c88778d20cf966e08804f8fd0bcc76b58b7850355_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:984f8b98428c68d58353709ff81433bdc971876d3435139ffb941ebd6b3206f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:00c50bf78baab3573d2b0528c9abe806c357f2598eb5e7008acc749b936ecaf2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:1821517e0a496d08e5b383257847b6016f32aa0eab8a32e232575e3583c37c78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:c906b9863bb187efa5bf8c64b93c3d0f8a7d37e4be5a8f2a1a4b83d2fde59d61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:78145e93f3176b4e8269202ce08cbd2df7aa965f155eda3c92dcd3b2e1ad2d0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:8660bed08d536f8422ab60cd95dee3a4f6ffafe7feccc5af91c5cea2f2432ca7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:d70cd37c7a926b7697190f4ba51baaf30250f5a2e99bb1dc5c2a3c8c464c4533_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:3b61ff009d0d9e5f7381033275fb33c4b10ca120e6d9751eb202317ce804c981_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:ac6afcd2f8c80fdde03d33d3cfc683d54f4170ec281e5d094243d9dfdfc78bb1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:b415d7e445f6e7405d30a94397ac4c2e260a3bac692ddd4eb65840b2ce1d2eb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1294161141ea5bb0c1e5516d92989b4d79778d8dc26ffa46ed47bb665a070bf1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:92b3e592209b88a5398723e2acbf6a39ab6e1057aa8b0f527db8077baf207775_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:ad0a2d16a0bff5613fd94aeb0e4fedcca6211cb828a3618e7a005cf3a65d08e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:fb37e29d1da06ec644d05167a4419fa3d4821070ef5d3fa63c97ea23dfd1d879_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:12ff925c7a8b33e5d3b6a78a8fbda0746b740957154b9ade490d71832d262f3c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:643bc5490e38a97e7d6589d4246f5db90f70e30c133faf739682eca3b39d500e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:89000922368b86b71e8f815621d99cde9aa1304bda011e59fe2ce356c5d94e99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e8327aa9ee1376d99abd65c846ef8cdb2061ca9269189da6889c0fcb5a33a896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:160ee93e902752d4d7f3984654359b291cdd553faf97c3a4ab00801c07eb4697_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:29c23b207d921324b5c04eab4de6262b76dfa4b8f6cb0aadc2b5db10e83598ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:6d9490c2b1263329e357f7dffa65060dee8f4dac9fb4ff818df814cab6e6ef09_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:76648b0e14edd2b1414ace88339d224c0b86596c5f7cb2e255e8573252d3f259_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:58127eb74dd3cf7939cf45b6731cdb34b5ac83a4927c7389a80ed0b0ab919ae1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:6f2dbaf27be40c1961b86968026217964bdb6847b129be98c4899b022abf2b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:87969ead893d4a26612d037c0c89f98120f41280cc813e1affbf266a009d2a7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:aeb5c63faead8521c52b49d581b313d30e9be14b22d7787cc023a6fc529b12fd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:35aa748a16171739ec6b76c1904d4f839dfd966cfda3973aa6638d8095fc7454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:a4d985e96a6ade43c768be9034a773dc644223f57e88c8a5e6ab5f4b5b5e10c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:ba55c76f2e21f6b1f6142a731e1b517a397f554442c431209d025c36e5924efc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:69f02b9fe4fbc6620eb0a7a7782469be2f9c90e79c208f7dc9bc8c4492156129_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:955b5a324b4a9dc736f0254ce0203abe391750aa5eca48a37db12d63199e1c8e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/rdma-cni-rhel9@sha256:a57a88e3772fd6c442fab3461d7a1e31e154bd31fd188bd39160f12ee3dbe368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:38070507ea6ddf45ebba456bd6d4b021dee2a6fb6078226086ff081b5c738731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3e9630b0cd702816ecf98491cfe66b8f9e39a493f94d861f48b2cb3898c638c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:b1cc9a29c0d41b68b40695ae6913f1b0148114ba768ef363fe8663031f13984e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:2f8a63000fa51c904ae32b930932f0fe14d2db5b8461458fac5b636c3b7a8600_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:579adea1b420d7bdb7c03539cb39c809785f2d27041e414535a16c078c80d70b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/sriov-network-metrics-exporter-rhel9@sha256:fbcea2b3132a9a36ba13ae8f197dde6d4427f1e1ed86397b7f756b901a8a1492_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:12277
Vulnerability from csaf_redhat - Published: 2026-04-30 11:25 - Updated: 2026-06-29 01:45A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64 | — |
Workaround
|
A flaw was found in fast-xml-parser. A user can exploit this flaw by processing specially crafted XML data with the XML builder when the `preserveOrder` option is enabled. This can lead to a stack overflow, causing the application to crash and resulting in a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64 | — |
Workaround
|
A flaw was found in fast-xml-parser. A remote attacker can exploit this vulnerability by supplying specially crafted XML input containing numeric character references or standard XML entities. This input can bypass configured entity expansion limits, leading to excessive memory allocation and high CPU usage. The primary consequence is a Denial of Service (DoS), which can crash the affected process.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_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 Data Foundation 4.20.10 security, enhancement \u0026 bug fix update",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Data Foundation 4.20.10 security, enhancement \u0026 bug fix update\n\nFIXED BUGS:\n==========\nDFBUGS-6171: RHODF 4.20.10 release\nDFBUGS-6016: Backport to odf-4.20.z [GSS] No public access to buckets after ODF upgrade to 4.20\nDFBUGS-5941: Backport to odf-4.20.z [External Mode]: noobaa-default-backing-store is in creating state due to \"CheckExternalConnection Status=UNKNOWN_FAILURE Error=SELF_SIGNED_CERT_IN_CHAIN\"\nDFBUGS-5818: [Backport to odf-4.20.z] [IBM_Support][Fusion HCI]\"storageclient-xxxxx-status-reporter job\" doesn\u0027t inherits the tolerations defined in \"ocs-client-operator-controller-manager\" deployment\nDFBUGS-5801: [Backport to odf-4.20.z] must-gather causes default RGW pools to be created and PGs to be stuck at 1 \nDFBUGS-5115: [csi] Handle race conditions during relocate/failover of RBD based workloads\nDFBUGS-4747: Unable to select NAD from dropdown list when creating storage cluster when using Multus\n\nCVEs:\n==========\nCVE-2026-4800\nCVE-2026-34986\nCVE-2026-33186\nCVE-2026-33036\nCVE-2026-27942",
"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:12277",
"url": "https://access.redhat.com/errata/RHSA-2026:12277"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27942",
"url": "https://access.redhat.com/security/cve/CVE-2026-27942"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33036",
"url": "https://access.redhat.com/security/cve/CVE-2026-33036"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4800",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"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_data_foundation/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_12277.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Data Foundation 4.20.10 security, enhancement \u0026 bug fix update",
"tracking": {
"current_release_date": "2026-06-29T01:45:54+00:00",
"generator": {
"date": "2026-06-29T01:45:54+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:12277",
"initial_release_date": "2026-04-30T11:25:14+00:00",
"revision_history": [
{
"date": "2026-04-30T11:25:14+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-04T14:12:26+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T01:45:54+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Openshift Data Foundation 4.2",
"product": {
"name": "Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_data_foundation:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Openshift Data Foundation"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Adfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775822432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3Ab16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776403457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-operator-bundle@sha256%3Af399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776403991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Ad0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"product_id": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-operator-bundle@sha256%3Abfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Acbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Ae6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-operator-bundle@sha256%3Ad9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775822689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Af6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"product_id": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-operator-bundle@sha256%3A4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421520"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3Aa1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256%3A4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"product_id": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-dependencies-operator-bundle@sha256%3Ac3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-rhel9-operator@sha256%3A854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-operator-bundle@sha256%3Aeae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-sidecar-rhel9@sha256%3Abd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3Ad56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-operator-bundle@sha256%3Ac0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Afd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"product_id": "registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-operator-bundle@sha256%3A10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"product_id": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-prometheus-operator-bundle@sha256%3A20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"product_id": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-cluster-operator-bundle@sha256%3A70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"product_id": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-hub-operator-bundle@sha256%3A3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"product_id": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-recipe-operator-bundle@sha256%3A7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775823207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-operator-bundle@sha256%3Ae7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776421567"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775822432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776403457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776403991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Adbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775822689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Abd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3Ab2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3Ad669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3Ac8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-rhel9-operator@sha256%3A64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-sidecar-rhel9@sha256%3A156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3Ae9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3Acbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Ab196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775823207"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Adb57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775822432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3Af9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776403457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776403991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Adfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775822689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Ab6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3Ae238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3Ad219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Ac7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-rhel9-operator@sha256%3Ad6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-sidecar-rhel9@sha256%3Ac809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Abbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Ae2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Ab388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775823207"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775822432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776403457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Aea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776403991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Af567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775822689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776404131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Aefe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3Af72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3Abd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-rhel9-operator@sha256%3Ad8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-sidecar-rhel9@sha256%3A31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3Af383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Afc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776406594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1775823207"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4800",
"cwe": {
"id": "CWE-94",
"name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)"
},
"discovery_date": "2026-03-31T20:01:21.918257+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453496"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: lodash: Arbitrary code execution via untrusted input in template imports",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In the context of Red Hat Enterprise Linux, the grafana and grafana-pcp packages execute the affected JavaScript entirely client-side within the user\u0027s browser. Consequently, the attack surface is strictly restricted to the local browser environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "RHBZ#2453496",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453496"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4800",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4800"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm",
"url": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c",
"url": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c"
}
],
"release_date": "2026-03-31T19:25:55.987000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T11:25:14+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.20/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12277"
},
{
"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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: lodash: Arbitrary code execution via untrusted input in template imports"
},
{
"cve": "CVE-2026-27942",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-02-26T03:01:53.367202+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2442938"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in fast-xml-parser. A user can exploit this flaw by processing specially crafted XML data with the XML builder when the `preserveOrder` option is enabled. This can lead to a stack overflow, causing the application to crash and resulting in a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "fast-xml-parser: fast-xml-parser: Stack overflow leads to Denial of Service",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The flaw affects the XML builder component of the fast-xml-parser library and is triggered only when the preserveOrder option is explicitly enabled. In Red Hat\u2013shipped configurations, this option is not enabled by default, and the vulnerable code path is therefore not exercised under typical deployments.\nThe underlying issue results in uncontrolled recursion leading to a stack overflow condition, which causes the application to terminate unexpectedly. While this can be triggered via crafted input, the impact is limited strictly to denial of service (DoS) and does not provide a mechanism for arbitrary code execution, privilege escalation, or data disclosure.\nFurthermore, exploitation requires that the affected application processes attacker-controlled XML input through the XML builder functionality with the specific vulnerable configuration enabled. This significantly reduces the attack surface and introduces environmental constraints not considered in the generalized NVD scoring.\n\nGiven the absence of confidentiality and integrity impact, the requirement for non-default configuration, and the limitation of the impact to process termination, Red Hat considers the practical risk to be lower than the NVD assessment. As such, this issue is classified as 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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27942"
},
{
"category": "external",
"summary": "RHBZ#2442938",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2442938"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27942",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27942"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27942",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27942"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/commit/c13a961910f14986295dd28484eee830fa1a0e8a",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/commit/c13a961910f14986295dd28484eee830fa1a0e8a"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/pull/791",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/pull/791"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-fj3w-jwp8-x2g3",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-fj3w-jwp8-x2g3"
}
],
"release_date": "2026-02-26T01:22:11.383000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T11:25:14+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.20/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12277"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, configure applications using the `fast-xml-parser` XML builder to set the `preserveOrder` option to `false`. Alternatively, ensure that all XML input data is thoroughly validated before being passed to the builder to prevent the processing of malicious or malformed content.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "fast-xml-parser: fast-xml-parser: Stack overflow leads to Denial of Service"
},
{
"cve": "CVE-2026-33036",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-03-20T06:02:18.306021+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449458"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in fast-xml-parser. A remote attacker can exploit this vulnerability by supplying specially crafted XML input containing numeric character references or standard XML entities. This input can bypass configured entity expansion limits, leading to excessive memory allocation and high CPU usage. The primary consequence is a Denial of Service (DoS), which can crash the affected process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "fast-xml-parser: fast-xml-parser: Denial of Service via XML entity expansion bypass",
"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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33036"
},
{
"category": "external",
"summary": "RHBZ#2449458",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449458"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33036",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33036"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33036",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33036"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/commit/bd26122c838e6a55e7d7ac49b4ccc01a49999a01",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/commit/bd26122c838e6a55e7d7ac49b4ccc01a49999a01"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/releases/tag/v5.5.6",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/releases/tag/v5.5.6"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-8gc5-j5rx-235r",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-8gc5-j5rx-235r"
}
],
"release_date": "2026-03-20T05:17:03.290000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T11:25:14+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.20/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12277"
},
{
"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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "fast-xml-parser: fast-xml-parser: Denial of Service via XML entity expansion bypass"
},
{
"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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_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-04-30T11:25:14+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.20/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12277"
},
{
"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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_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-04-30T11:25:14+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.20/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12277"
},
{
"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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:f399b7669f82d8c7261202abec0cbfd3b2fac76709a70fb2a513b4b11fade258_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:2cebd0dc24a731f2c2d33a7b1930d9bf65845ab83817775d378c07630a1e55c1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:54beb2645e89c0ad54c9d454cf9976bbdbe8d39f7de7087a99d7a5a0fa8db535_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:b16e684d89de40f241e55d95da5f4fccc66822a660e5acd3be981b71b5057702_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:f9b729a5ea810214412e82fab3bfe36602f6cba9a07e6eb0bc2032c5dc556e17_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:1838b85d294f260d3cbbcdeabb19bcd0c3fb1f0ce31c5676dfa48b10ad8d59b7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:6dbbc46f47994ad8bcf29f040b64a9b9c17c161ba9babfea3ce1c8a15fec32af_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:db57ed5bd968276e033a68a90f369dd41708dc6404db38c1d9b2a07a8327499a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:dfdf81ab0ca1b4c8155b8b37db728aa37c3b708e8621995da9cbd576086954c3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:411aa11f920b73eb4cdf4afa7948e5e3bd161e4f8068b8349025368ee0806013_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5516d05155406fa1183a4f913d420ec8c382b6aeeba2c69c0184dbdf78e95eb1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:7248ed40e12d7fb5881f9d76aa01ea43a3095c9ecac5854303f732043ada3917_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ea7c225e4acb2eec25cb48e6068c08ae077beee67458ae58e3465851940fd81d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:bfaf01516833acaf30eb30165f66687f122fa5fa5a66d87ff623a5c9eda9faf3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1ed70f06ed113964103868d57e983e06f1473500040d2d6c0a5bd27e2385bf7f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:326f6201fe88992855a8f945f4c40f62d1a2e8fb83c38cb77b769b2889627f4e_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:40b71d0ac98a372943219f0a138dc08d7f4e6d3c4337e0787463f86b4bb28c07_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d0645cfddaf15cbb47ea1755ea118e607f11b4f32ab3fb4f87c53b52de7bbcdd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:459ee750a0ab1209540ad9c09b090beffd5da246aeb7171993c7812652cfd82e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:8427b24d33a5f1c51e1314194be758c501be31b0b5ec53f256871a0d8dc82621_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:cbdb7a6550b3723f7dfcf5abfae878860c6101df8a6429a596c5a0c58486c3bd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:dfc04028f84b17339c8950c890bd27f55169e3aa60b9555fea15f2c2cb720c1b_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:d9dfc4f0b824dc259a0b53d143446a67a9356dc28cfd78e3e3ed452b24b98e5f_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6bcaee8923f89346dad8e9830cf17e115c86668525f644d11fbaf9608b4df9fc_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:dbf5873f3b7025e31a09a502da82a0c2a49ffd636c2f1186a418b1b327c3e30f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e6fc86165dcd9f9239f11d7792cf51e84275091b7864c7b3cb24f23a33f5aa2c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:f567517ba81297b4be348c9fe9960d14b758ae2fb7b0c7d38389b05bc445f86b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:55c1db11abb65030a27ace0692b24ac91d591fe7279cc699647bb7e47377ee46_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6df05909b32cea6072f7e93f62ea6092dd6644505b7c377a41b7eafddd98e957_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:7d523dd4c352ef043c07f9810123e6b47e742f397bdb9b1cc4e08023b227914a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:99d3ef22e7c1fb683d763fedea4c717cc76179d842d87cfc4c4d785c079d100a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:4d9bae0cd399ae2f3abdc4f6dc53eca6c71fef9c7d921eb39b9d3f97ecad35f1_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:290886aae2f0bbc4e6f1f467a0e0d3c97b0dc9b58a69790e03a89e4f48313a84_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:33524dbe3e6a8ea5a4573f54ac87c9333a321957e2dc8ed5b2ed4fb243e27415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:3acdc5008849e5bb20a2406aa528404a2a4eec7a89fff16f12ee8cd23c87d036_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f6300b99193451cddf3ebb85d90bcffc7987cc7979e7769129e8a71bcc0d483d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7bb28eb1a25ac829ea643483baabbafa2ea112c17120a4c53282dd0f97ca63ba_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b6b6acd8570515bccb7c0cf73f27ad5a05e1f7f345b70103a8b3d85b5ae6ca50_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:bd30dd3c0f10a7419e36a029680d10d6f721e15ea33cc4ea4d3cc41a287ece36_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:efe81953f21b32ba1b29eaa92d2244dab0a9ea284ddf7aacc61e74100585aa02_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:277d1eaae6422e7f41455d99758ab29c46c4821fc8cd86bf10926aab6d951a2e_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:94a3152a0b5e36e451eeaa5ea7c4e3809e36c5c00c18374f735cbed8a1822afe_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:b2f540a01874e37e654d6fd6b3b82cf44e5b1f2b082204d7acd6238e342967d4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:f72bfba5f4053f1b391f7685dc9ee695730fd31e0bde1eea71eb06e4c6d4cf31_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:09ca4236d6a93ebd832a34c1dbe7d0573ca3ebc59cf8dcc022a8f488621563d4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:4d6fa3682bb01bd64a39783effb46db3b89c36a7d7c7f3e7823aa16e1e0cd72d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d669926876f84572caa5a621f7ee9235b1053c45de194b7860b2e1395ebc8082_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:e238ac1267655df4fd45ebc66439868db43eeaa5bc433b3dfde5cc22b2a20232_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a1fcec9d7bf0f9a8b45b1c09e1ff1243b7ee38b84ed2871e51cd0aba73d70ad5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:bd3d9988d56a356ce751aa23a13629b040c6a640510a62d9f44ba2ec6638f42b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:c8f37c4f2c9b9514dfbbd9c8b9750e4e9ca88dfff344f9cc1157906d5629e6c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:d219427149a475f140e807b8857be4f02e36f8d50cf18efa6261f96d644f0fb7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:4d780ab20b7998b60929a666468ffc046d4666403abfcfc01dd7b5b614d42890_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:0ace2dc69d65bfc51b7880e7941c074b042ce0c9a49f34206ae8ed3b7a1cb025_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1e3aa2c95f6f35c8e8b9b39c5be3d3973d5286670753f6512681c138ef607dd3_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:52cba988a8921d60c6df8696ade7fd4d1821bfae7413c1954c66c7d2d468950f_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:663d9f1fb160f3decbe4632c10d7bcc9d5199e16f4852b04c5ff0c6664dcf3a6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:28e0cdc61c5a12d138e66fc6bdb4ea0030caa5cb8b034b76ea67bba2b5048dd0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:6a887845fef9147f78cfc7b4f1fba122ffefa12752946dee511125f0c0b55596_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:9de6f10311e67ba6bde3fcf931f9897eaeb57ff913347e5de56395325996fb1d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:c7ca47572158a28244b3d7499e34dfcbc594fd33486d04a874208ea5ad89e9a9_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:c3501a4b1fd5e64bad66d33ad935dce0fcf0ce3f93a675307de24e9d28acec62_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:eae7a90a03414eef2ab3362a25b4b9d413e538a4eef7d47dc280de5debad8199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:64cdfd8f4b7c842b988a11903cdfaeb4baa2d2f12fedaa096e6ffc94030a77ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:854c6d155c6442c99aec35ceb552235987d1de7756b2d9c72b206665bb01e205_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d6c2411860abc7384d952eed842f476458f3b39390135265b9a06cbc1ac60a35_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:d8ff504a5f6ca122aa77e14747f84a83e364cc66bef41b15c74728aca04eadcb_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:156811bdba65e7ced33bb7d3ff71506d1d78c2e2f0fda3bdd01accbb094acda6_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:31bb2758db9da44709ba59570e808b82a3458addfa513099523bc7133bbad7f6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:bd3a127dfadd64db95256b3f3f59367b4c96a55a9eea8e1a8f43e9275a182db6_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:c809f04640fa5e6c5fc8e9f790aff4815970858c8ca602c3d4df8d8419938b72_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:45b498b5de373bf3a7101d76934b3f76408622a7685cbd95eef95cb11fe19bda_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:4646ea21ea9ccc878d00b2e80a0907b86f1f040e33e3eedbf73f00fca30f6afb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:902d24cabb545dd2c3733f9e581a667e42d9c037e1b36ced286bbd33a96a72e0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:bbeff98f4b1ea5cdcf1caa48e4c4a4759f26bd842419504e5b1c8052ec3f15d4_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:c0769c4621ab8938cfb2b944667688672f91b876b7ef18049c3d3747bc18387a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:214f23d8bf8f2bb65d5acabed9e472273e2c1a7f491bc4a1160be00271c4d490_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6386865e6ae9af348a73037f84f6e54966db2dae7d92cab9a60e4a84c41a4d8d_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:d56bc824fa29256432ee11bcfe8f02470ea26426325e051999850c060924b303_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e9c762bc0f9d434b26c6b3bcbda8497ece5fd4950175ad5cf2a5644d6ec107f4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:00f2a47ffea5073c05243284e5ca20ac857dd32a26dd56accb1a56582dc76932_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:9f35ca7b6fa656d736212c67542a90e2ae8c309ae12022069bac2b2e15485e3c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbe10b9fcd98c5f0664d8da1721d5b1f5716f56235b787644ff679c8c7cf5e90_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:f383e1eee810782738f72ef20199b4aeed135a0b212a3d2643fa819ae22c8fb4_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:10e60baa58116db95e0e3b6c40dae2cac88f4644a3eaf97c083a75e902b17efd_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:20c6adec557c3cd67cb1d12045f6f5fa7e963c55a7d46b4ef71787dfcc5f57f2_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:7ce08cf45e20158ad659f4bdb6dbb6484a571b80d527d5c45c9c084e9e952561_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:b196a7facda4b3f566f24b5db7df494fb0d82f0dc5b5f9afa5cd133e01db5e3e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc4aac367b91ca2b4f32ee35a65c6253b56cf46a1a5e306751c9c2202d38e9e6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fd0fb5a3115891a4dcf5490c0367b39881a6b61ad88a79296db1244d7e6004ef_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:70a9b212fab45493ff6f0b4c0fbd9255111d656463843b111f292cbe2c33a055_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:3a5201adc62745a4c9a3656653677e77ee941d6aa2e7b2de6d4662c233341ee4_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:7ca2fba8c84300eb2cdefe81694a0ed353c459e7756bf20899458e0e00647ba8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:28a44bbff9dbf22ca1484307315486be544db85b7f360c14e088b9773962ee7b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6cb63f18acb165bd9589b128de594240bb4f7f1a0183fa63c72377747109e916_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:88cd3da421ce5ee14181adf8269b3cd0a3381ee6779389e5c29017a6b2a95615_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e2ae238f722ac958428aa2940da68411f2f32d50f13cbcfdd69b6f69258ca996_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:e7983abe73794c327473cb3056d298d7804cf5c81309e6e7a097a273ceeabc73_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:57885eca4ccdd9d8aadf44bea1820c9c8657f82ea2f6b86404605306a867c77e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:74d3b56ef65426ded5c0ed4b555fbacdc656cd45dcdf8981486e2beb00c5e30e_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:7c77a79652c74698069c7c3564f11af4813a1d89598e64756113b9854c547658_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:b388ff69995a583fb53ceb606a83d6a532751cee5480ef96d7a330a1a7b20429_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"
}
]
}
RHSA-2026:12279
Vulnerability from csaf_redhat - Published: 2026-04-30 11:36 - Updated: 2026-06-29 01:45A 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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64 | — |
Workaround
|
A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64 | — |
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64 | — |
A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64 | — |
Workaround
|
A flaw was found in fast-xml-parser. A remote attacker can exploit this vulnerability by supplying specially crafted XML input containing numeric character references or standard XML entities. This input can bypass configured entity expansion limits, leading to excessive memory allocation and high CPU usage. The primary consequence is a Denial of Service (DoS), which can crash the affected process.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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 Data Foundation 4.19.15 security, enhancement \u0026 bug fix update",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Data Foundation 4.19.15 security, enhancement \u0026 bug fix update\n\nFIXED BUGS:\n==========\nDFBUGS-6345: RHODF 4.19.15\nDFBUGS-5942: Backport to odf-4.19.z [External Mode]: noobaa-default-backing-store is in creating state due to \"CheckExternalConnection Status=UNKNOWN_FAILURE Error=SELF_SIGNED_CERT_IN_CHAIN\"\nDFBUGS-5819: [Backport to odf-4.19.z] [IBM_Support][Fusion HCI]\"storageclient-xxxxx-status-reporter job\" doesn\u0027t inherits the tolerations defined in \"ocs-client-operator-controller-manager\" deployment\nDFBUGS-5800: [Backport to odf-4.19.z] must-gather causes default RGW pools to be created and PGs to be stuck at 1 \nDFBUGS-4440: [4.19][ROSA HCP][UI]Bad gateway on Storage System creation wizard\n\nCVEs:\n==========\nCVE-2026-34986\nCVE-2025-61726\nCVE-2026-33186\nCVE-2025-61729\nCVE-2026-4800\nCVE-2025-58183\nCVE-2026-33036",
"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:12279",
"url": "https://access.redhat.com/errata/RHSA-2026:12279"
},
{
"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-2025-61726",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33036",
"url": "https://access.redhat.com/security/cve/CVE-2026-33036"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4800",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"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_data_foundation/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_12279.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Data Foundation 4.19.15 security, enhancement \u0026 bug fix update",
"tracking": {
"current_release_date": "2026-06-29T01:45:55+00:00",
"generator": {
"date": "2026-06-29T01:45:55+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:12279",
"initial_release_date": "2026-04-30T11:36:26+00:00",
"revision_history": [
{
"date": "2026-04-30T11:36:26+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-04T14:12:26+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T01:45:55+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Openshift Data Foundation 4.19",
"product": {
"name": "Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_data_foundation:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Openshift Data Foundation"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776706744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-operator-bundle@sha256%3Add40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710227"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"product_id": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-operator-bundle@sha256%3A05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710229"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-operator-bundle@sha256%3Abc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710244"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"product_id": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-operator-bundle@sha256%3A995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3Aba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256%3A996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710246"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Af069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"product_id": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-dependencies-operator-bundle@sha256%3A18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Aa0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-operator-bundle@sha256%3Aa0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3Acbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"product_id": "registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-operator-bundle@sha256%3Ab1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"product_id": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-prometheus-operator-bundle@sha256%3A88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"product_id": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-cluster-operator-bundle@sha256%3A941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"product_id": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-hub-operator-bundle@sha256%3Ade97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Af2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"product_id": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-recipe-operator-bundle@sha256%3A69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-operator-bundle@sha256%3A031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56?arch=amd64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776710298"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776706744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Ade4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3Ab7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3Ae047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Aa928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079774"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776706744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Afb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Ae6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Ab24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3Ac9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3Ae58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3Afbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3Acd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Af101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2?arch=s390x\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079774"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776706744"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Ad26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707301"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079295"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Ade3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3Af7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776707771"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051?arch=arm64\u0026repository_url=registry.redhat.io/odf4\u0026tag=1776079774"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
}
]
},
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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-04-30T11:36:26+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12279"
},
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T11:36:26+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12279"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T11:36:26+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12279"
}
],
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2026-4800",
"cwe": {
"id": "CWE-94",
"name": "Improper Control of Generation of Code (\u0027Code Injection\u0027)"
},
"discovery_date": "2026-03-31T20:01:21.918257+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453496"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in lodash. The fix for CVE-2021-23337 added validation for the variable option in _.template but did not apply the same validation to options.imports key names. Both paths flow into the same Function() constructor sink. Additionally, _.template uses assignInWith to merge imports, which enumerates inherited properties via for..in. If Object.prototype has been polluted by any other vector, the polluted keys are copied into the imports object and passed to Function().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: lodash: Arbitrary code execution via untrusted input in template imports",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "In the context of Red Hat Enterprise Linux, the grafana and grafana-pcp packages execute the affected JavaScript entirely client-side within the user\u0027s browser. Consequently, the attack surface is strictly restricted to the local browser environment.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4800"
},
{
"category": "external",
"summary": "RHBZ#2453496",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453496"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4800",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4800"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4800"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm",
"url": "https://github.com/advisories/GHSA-35jh-r3h4-6jhm"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c",
"url": "https://github.com/lodash/lodash/commit/3469357cff396a26c363f8c1b5a91dde28ba4b1c"
}
],
"release_date": "2026-03-31T19:25:55.987000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T11:36:26+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12279"
},
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: lodash: Arbitrary code execution via untrusted input in template imports"
},
{
"cve": "CVE-2026-33036",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-03-20T06:02:18.306021+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449458"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in fast-xml-parser. A remote attacker can exploit this vulnerability by supplying specially crafted XML input containing numeric character references or standard XML entities. This input can bypass configured entity expansion limits, leading to excessive memory allocation and high CPU usage. The primary consequence is a Denial of Service (DoS), which can crash the affected process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "fast-xml-parser: fast-xml-parser: Denial of Service via XML entity expansion bypass",
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33036"
},
{
"category": "external",
"summary": "RHBZ#2449458",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449458"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33036",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33036"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33036",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33036"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/commit/bd26122c838e6a55e7d7ac49b4ccc01a49999a01",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/commit/bd26122c838e6a55e7d7ac49b4ccc01a49999a01"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/releases/tag/v5.5.6",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/releases/tag/v5.5.6"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-8gc5-j5rx-235r",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-8gc5-j5rx-235r"
}
],
"release_date": "2026-03-20T05:17:03.290000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T11:36:26+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12279"
},
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "fast-xml-parser: fast-xml-parser: Denial of Service via XML entity expansion bypass"
},
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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-04-30T11:36:26+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12279"
},
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_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-04-30T11:36:26+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12279"
},
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:dd40accadd49771cd27b7f0de2c90a9b21e100a43369efe0393183cc434781cf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:225ba1747733c974fd4a3c9b49f657b180b83486d1c35a473e8e5a2b96abcc53_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8c6cbc8235011fce3c988e7fbeb908f8eeefc19fc44cad33595af89302c6f95c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:93323b16517b9b7b24c952fa07207ff854738b8b290fa63db21ca79399c4ab2a_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9707855db691fb72815baf3758cff648bda0b33a11b155f30ba04c950f776005_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:08d3d6db14a36f5338a958bc9ee5914f912f5980f20f8dc6775ad4cf1905aaaf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:2b471f005eae461ce14a531275cdcb2ace42e90ff1615a5541181b79a657c34f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:72054a55200a33d05d6c52ae2893edac550d1970cc4395e144f67715eed0f4a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:43490d8f164f31ea025772d00d3dca379d4b770c7aace1a9b4066d118701cbc0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:5712877643261f69dc38438d0194e4fc299ad4efc98a89320b06066a605d5ed0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9f71b8ac38198f832d1687d6de10078f43c4fb189a25357a5a1f1148c1a467ab_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:05d8d117013db65743cfae129da519b604a87b4d91546116b13a6639d191d490_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:46ea3cd9a992d1bb984a247365f5a866640edf78cca9a853ed241118393bc7e1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:51c2c549d33debec7c0b66b4c0b091bab1ea58559480e329759a1373b6d2dfd2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:987982d5cbe11a564ae2bb6c38a4aae2ae351bdefa7e0280393ba2be011984fc_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:de4360c38bde7baf0095e8d6b4e98d382d0d746bf497577dc4221efa15b602d4_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08aede339f0597f4327e8e72a4af707c960c7a41e2e78426163241dc33fb239e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0db0a9d4571af3dd647818bfa011d37e06ae721f3a7ba6306b1d5f47d740f17d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d26ac4eba416e06b01f72ddd90e7fc0148653d0ceedc67beefafafe522931957_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:fb585faf2e75939b157377bfa50eabf0f649492a5461ad79cb2e7c6fb35f700d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:bc5267ef2a3e4fa2b6c8dd2043608399b307a292c6860ab99d750c478d409e0e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:12cb5269ac62949e96efbdae61dc9551a5e1574177b6c9383879b6b290b99ced_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:22ff45bb3a0d0d11d3eb4c9255eacd2b5517925370374968bc5edf4012baf72b_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:824029e5f4fcd750292bac55cee15f17bd002a42e6d36c108122d50eeeaea776_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:9ff944fe6ba891448ed4558f33248d66250565c67fe45d4abc12964c1016a1f9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:063d240d7ed66b531da1fdbc2e1978701c161b7fe90c6e5abf9d8064789d0f08_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0a880a5bd07e0272a59254a92c1c98a15e076664e35f7f0d5f6e800102425898_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:69d362c35147c545d73437b7be9e9300a4812e6f30371782084da31f4c13b723_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b7f9658075cdc1013d83a00e514372e1f5faa76e9bec9c431c636e0255c262ff_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:995671309308b3d68ce4ad0991015a6e74c8cdd31b1305481db4dfcec6dab9d0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:295af25d80fc34c97061f87664b3e422df5b8de904e5f446a3017007c39763fb_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:95c2c3dee3ffcb7fc26a41489ce49033fe311cfad8535ccbe03b745284af3255_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:9d331d5bb3d5362088b9fe84c93b2004013cebb0549b94bed87fd01bc0e04d9d_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e6849ce5b4c0b526067e0c5ae90da85efc9abff1d76161c170aa9cd4e9f2a8e7_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:0c21d44342106f7b550717d6b3c75c165f6d9142edbbd0764c9aa78632237595_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:621af15ba4c152caa532594ea181ca21a1adbd29f077e1881be606c7b2f09520_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:95ad9d6989cffdd7f6b4f48920ba21e0dfee8b21f14c6f85af428b18345ced83_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:b24124930a6d6ba80a5d8c2159e0dde4162efaa9f91a3a2493dee723141204eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:26480cf68b1d61858d092767c2a1461b370e93a7546a2ed7828693e0be6d3061_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:326a82e8e21354b7fb270b2ca4bb8af8274dc009ce49636a3432afda2b5e3fbf_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:939518fd552b01edf2a93fd24a0a8ed9717b93a8124811d8c8f24b2964586086_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c9f1b747f000b07c12b7e25e2eba3d44cee505a8165a0a207bfa7ae49ef28ca5_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:3425d6f585c5199e9f243fa29df000e7d6a7da37c8940b2ef952107ae58840e3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:7acd288500c571c5c46f576830e6fa837e7ffaf81b61ad93740c0dadec4f6499_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:94129b5fc46fe10392df44260c6235e301dbdd5b33f2979c0e99cb44c6951671_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:e58fd4600d19b3d543eca8726617a9bf55a783198264e5e6fdce2f7860674ccf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0193cfee41ea76601c157f0535e26d16a6bb544317ffe229df8714c1d4ab23eb_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:59ebde64bbf97632c07ce685ca1b16fa7957e2dc322c672b589559a8f0e0292f_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:8180db80a46c005759a086990fb0504a7847df0a13578ebe30d84d44d5b79db5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:92233282fed887956be7ad5a1a6a56530ccbb4f201e6b9225b93950ed1bdfe7c_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:996ab5b3c8a4331ae29a115df64470321463a4c86b9eebdf40ef24e4caad469d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:7b698d1512bad4e32654b886a2c630710f58a3903b3cc299f24cba5d3e8a3dda_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:9a88d5f7fce059b21ee3438734660aac19c739d64c655a7e606ab984f13a7dd7_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:ba0fd00720f301a9a3cd59b3ce8dba985b179b0f4e7d0ba37683cdc5ab8428e4_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:fbeba6f61f270d2099396639221c00406e2e5e3d2f829df93332a61075cb3958_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:3076b14ae96af40ce767a4c6047e4826a05d4935d390c45518cea399d8f6c868_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:58fa7a633a3ac07d28b2b457c84b41d1814b4870edef1dec67fabe15fa47df94_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de3191b8527328bcda3ee6ad085fd4a8388e8219e4a57c7871f1f1bd66d9412b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f069b602da858b4978a2cd1d5ae046008f551d3f865c1f4e4c7c33a01b464f01_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:18176d66e822bc81d4366a17ba1ec4344f355596547632a81e451c44b3241c21_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:31ea428ac1bac32e28d1de063c2b5669234274759b1650641194f2f62b9d1232_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:7303e538f6b51b82b543f618f81927476af45de9612776560e22f6084b8eb8c1_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:884e1c9ebae0c55609bc5487edb207eabc675c9c40b0b51bb5bd183d85b002dc_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a0882ec5239e3c410bd8cde9fed6f7a40bbcdd99539b0eadc0802ed9de8b3660_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:a0e7589f2bed6063a8b766a16bd92155f0caa45215eeb4655d6ca39fb1186b0f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:04f46d7eb908121baf4d3e3433dfa14fffafb42328ee17faf3daa6ace96adf78_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:09b01165df8f630afbdacd80227bca74304f6a4e03c1c64027e19a2eec19192f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:92fdad1c8bb6db920c10d19b455143d7688dfea804770cff6084e47460975ca7_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:f7ec5e84796aee5b4a916f803af398ff0e9e0a056580d867af12ae97b9201d75_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:285fb3527b09d73a0a1d6cabde410e684f4cf47f585e142d6665cde23e51ce0b_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cbfc80f2da96e4db174139eb375715aba24c55fe50ae7a89d3e2227ab375798e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:cd4d15d104f04cd8bc836a17ede3a4c1026aab5ace113cb04225c5397da03ff9_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:e047e1d86926df0580d68a082fb647af23ed7831b82ef3d5902468b1fba57a19_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:b1cd4edb9cd4678c5493ed3599608c7b892b539a89321216425e5a0dc002e43e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:88f514c3fd6e66efadaa426ecbdc175284f295aa5eb29d68982033421c799fa6_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1b5d23d6f9904f1f88e241a9d6f4eb3113bd826fae5fadb6942b01e7a76a5f1c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:73129534b3c1f8063e4bbe60409dd97c270b426d420d5ed94e4ee629079c57a0_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:799a11fe848efd69ad3e570088dc00a534f9528d1eb5f7fe6e32cc838ddec577_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:a928ff76754607038db7c8ac8b542d33a6350dde28d32b35cce31a3403e76ac7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:941c038bf9ec376197cde64140d242725744a57d11af9f3fb84e9f03b92e98bd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:de97e806d2d9f4486dcda7a855226a2aaa12221c7cc49f9a9f738dd5701c2fa1_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:69305b774c8fc9811aa05e31ec63285030d468991cc4313aae1ddac597e95e89_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:03cc45bf056f0015d73c48d88fd9e9c23f9abed069b1eeb6597e15a8f7d69eef_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:6dcc36a3e744e83ebb9a7791e32691caae3014d456a61e9f9b6e2269885930f4_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91efacbad0b371266a5925486e222978adb25d02557e1c4bb36c5b6aeb7d4fa3_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f2da1b92acf41f57c6a54aa5c68f23fe261f3655c4b4eeb9d246f514c9f97245_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:031825475b50ded9bc47147dd76e9bdd169c9df1379b77ef150e808e2c005c56_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:1b5f8f7f0cc26e4ef67c1185071365397fa05fd4ce14d6b58c921d23459385e3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:23a1eeb9c5ec4036cdf6b80ef674803f1bf9c3b8c00ed0bd32a9bce13dde7291_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:8446d8f3208207146c61d234b305b7133333930e48a11d0af30710ba8c2ca051_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f101f7f148ff73d6cedc40551629108ed98b470ec0e428bc957bd0b25c6619a2_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"
}
]
}
RHSA-2026:12283
Vulnerability from csaf_redhat - Published: 2026-05-06 13:03 - Updated: 2026-06-28 22:55A 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.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_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.12.88 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.12.\n\nRed Hat Product Security has rated this update as having a security impact of Low. 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.12.88. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:12282\n\nSecurity Fix(es):\n\nNone\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.12 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.12/html-single/updating_clusters/index#updating-cluster-within-minor.",
"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:12283",
"url": "https://access.redhat.com/errata/RHSA-2026:12283"
},
{
"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_12283.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.12.88 security and extras update",
"tracking": {
"current_release_date": "2026-06-28T22:55:05+00:00",
"generator": {
"date": "2026-06-28T22:55:05+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:12283",
"initial_release_date": "2026-05-06T13:03:21+00:00",
"revision_history": [
{
"date": "2026-05-06T13:03:21+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-06T13:03:44+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55: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 Container Platform 4.12",
"product": {
"name": "Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.12::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3A793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777002720"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3Ac0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3A3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp@sha256%3Adfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ad8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776956382"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776957232"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3A39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001654"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776832243"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776832045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3Aa170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel8@sha256%3A9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel8-operator@sha256%3A1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001570"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3Aea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3Abe49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-contour-rhel8@sha256%3A84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777002164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776832371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel8@sha256%3Aa64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776831527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3Ad7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel8@sha256%3Adac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel8-operator@sha256%3Af21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3A597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001627"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777002142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-cni@sha256%3Ac24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3A1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999991"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3A0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3A3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3Aca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3A97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776999970"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777000001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3A35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777001538"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_amd64 as a component of Red Hat OpenShift Container Platform 4.12",
"product_id": "Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.12"
}
]
},
"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.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_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.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_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-06T13:03:21+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.12/html/release_notes\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.12/html-single/updating_clusters/index#updating-cluster-within-minor.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12283"
},
{
"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.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_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.12:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/frr-rhel8@sha256:a64102de8fd6afd927b7b7447899474239bbd45a2fb15a9a7d5d8863390113d7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator@sha256:1f55aeadf10501d4f1b0203733de0e298167ea0e8a765d7f5cd6a6e938e15c3b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8-operator@sha256:f21e3ed5bc984691b76fe47f28bd13adc7f661f11156b15ff9ca50ff51f9a1a0_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/metallb-rhel8@sha256:dac2f649404b353348784bc97a93b734676fe3e96413e2e9843f3ae8619d4024_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ansible-operator@sha256:7923d3669cd041fa666e12ce5f3c38e4b1d0ceb0b5c49d78854736f308e7adfd_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea086d5f11dd98f70e94ae57fbd5b880b5dccc82d6c51bae894cf297440d224c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:be49270cb361b07b00aab644281b73d0aca467708516de05dc22ba5117722db9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cloud-event-proxy@sha256:1b496453f14ff6cbeedd159d4fd542e0b573a060d0df163c263e721972fe38df_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:5d05452ba25ddd0059c0a06953cdeaee1577d1e5c344321f8877973ec27f5f87_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:793403b2d98a307b2611c50ba405bb21bcef0fc8e8bc645708b3dd2973c86179_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:3f751feddc375429e69a7b240f3b81c7408582896d22a4d27eba3b628c9f093e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:c0c45d10c29890379eb7cf63abefbbf674152196cba7b5fb9a899004703a0f18_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-contour-rhel8@sha256:84c7cada326a320c3476d6f351e0cd292b8d10bb6235984ee39bbc201afd387b_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:1be436b65026a3e7627fdc76ecc0b68c88a8f3fbde1cf854acce96f9be75fa46_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:788efed82684dd286752afa830836185978997f8be00d5cd527f0ec7d42fde34_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:5133069a13a8090f9f98b24c1f628f2dba5af9d52c1010332023042c273770f7_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-egress-router@sha256:5a5f93f5b9700bc2dd71b2648b162f9633db6fb185fbaa37f9a6a5667b6f371f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:8057b5373886d7c3d57039277570ffb6ae3aa61c713ddfa6cd57073edda231bb_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d7e89f01fe01e4410336264a50f9d91e1b3500672a284f38b38016e0cfbef26f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-helm-operator@sha256:a170db3b598fb54c0d157c1bef529fa5f2d3cf415ce9c8ebf0426c683d45dce9_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:9f103bd2a7049c2d4ac2d524e167f7e240df769fa3f5588a67607bb475c19a75_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d8617b979e3a22683dfd4979703c57d88f7e3fba32658ec18ce396463d9e7f79_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:617cad317fd1772036fae5b818d233edfc2428e2d7a27eaedbf4c4ff465d2f54_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:88fd28ce7dfa7198ad0e6ce113733e96bff41c141b1ea056365dcdebb7fe1bef_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:39f45779cd6b60fcabb8cc0a56bc9c7b39902861af8eccae580900e5298c9733_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:0d822179c274d9907e7d846a49cce6405384451b67b37a9115c38a20b3e08d4e_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp-operator@sha256:597901ae2d7bdf7a8ab384b7295f2dcf303e865abdf772159ea8b43a61761fad_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-ptp@sha256:dfd7b744f9522c14995a81c8905b63086f86e8dbcc003530df4c057d57738f85_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-cni@sha256:c24095e08a6291d18e6e31feea9770f3ffee08dd6e8324f8fe8ca20e9a46fa2c_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:1959d8b73eb0b773e03bbf57ab3105fcba0773c593ccd19aeb0f938602af2756_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0570a520a269550176147fe09a512a9e872ac2458dcb5c0061d91b76db7caae5_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:0fe63064a897d5be8c6ce46a9711da2baaf51ed952b2828d3e481881acb1b916_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:3ba68ff7f848a6118338e57d10cea4e128d47ebc4889ca5db8fe99ab758e4fab_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:ca44532c00000add926293af01874691cb14c980ef3b8da8e892c4a8f11df18a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:97762063cb4cb93e787949610e7dc8abd2250f5069eddfd332d5c28f416aeb91_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:35925fbd9357d8f902a054bd640c4931b41256621dcfb9de15497d8a8c49984a_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:982743350b2b2d5e1ddafd366564326f8fb188be358e6fd40c09ffae2d174e7f_amd64",
"Red Hat OpenShift Container Platform 4.12:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:129b8b8d9c7f5cf45f058b9ef780749e1b1a93d1a7b7c2e6d838eb4fb1716a1d_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:12337
Vulnerability from csaf_redhat - Published: 2026-04-30 13:40 - Updated: 2026-06-28 22:55A vulnerability in the assisted-service REST API, an optional Assisted Installer (assisted-service) component in the Multicluster Engine (MCE), allows an authenticated user with minimal namespace-scoped privileges to obtain administrative credentials for arbitrary clusters provisioned through the hub. The credentials download endpoint (GET /v2/clusters/{cluster_id}/credentials, which returns the kubeadmin password) and the kubeconfig download endpoint are operational in AUTH_TYPE=local mode, the only authentication mode available in on-premises ACM/MCE hub deployments. The local authenticator unconditionally grants full administrative access to any request bearing a valid JWT, with no per-endpoint restrictions. A valid local JWT is embedded as a plaintext query parameter in InfraEnvStatus.ISODownloadURL and is readable by any user who has get rights on an InfraEnv object in their own namespace. The affected components ship as part of Multicluster Engine (MCE). The Red Hat Advanced Cluster Management (ACM) deployments that include MCE are equally affected. This issue does not affect the hosted SaaS offering (console.redhat.com), which uses a different authentication mode. Successful exploitation gives the attacker the kubeadmin password and kubeconfig for any OpenShift cluster provisioned through the affected hub, granting unrestricted root-level administrative access to those spoke clusters.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_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": "Assisted installer RHEL 9 components for the multicluster engine for Kubernetes 2.11.1 General Availability release, with updates to container images.",
"title": "Topic"
},
{
"category": "general",
"text": "Assisted Installer RHEL 9 integrates components for the general multicluster engine\nfor Kubernetes 2.11.1 release that simplify the process of deploying OpenShift Container\nPlatform clusters.\n\nThe multicluster engine for Kubernetes provides the foundational components\nthat are necessary for the centralized management of multiple\nKubernetes-based clusters across data centers, public clouds, and private\nclouds.\n\nYou can use the engine to create new Red Hat OpenShift Container Platform\nclusters, or to import existing Kubernetes-based clusters for management.\n\nAfter the clusters are managed, you can use the APIs that\nare provided by the engine to distribute configuration based on placement\npolicy.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:12337",
"url": "https://access.redhat.com/errata/RHSA-2026:12337"
},
{
"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-7163",
"url": "https://access.redhat.com/security/cve/CVE-2026-7163"
},
{
"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_12337.json"
}
],
"title": "Red Hat Security Advisory: Assisted Installer RHEL 9 components for Multicluster Engine for Kubernetes 2.11.1",
"tracking": {
"current_release_date": "2026-06-28T22:55:06+00:00",
"generator": {
"date": "2026-06-28T22:55:06+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:12337",
"initial_release_date": "2026-04-30T13:40:21+00:00",
"revision_history": [
{
"date": "2026-04-30T13:40:21+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-04T14:12:26+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:06+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "multicluster engine for Kubernetes 2.11",
"product": {
"name": "multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_engine:2.11::el9"
}
}
}
],
"category": "product_family",
"name": "multicluster engine for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-image-service-rhel9@sha256%3Af25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776967957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-rhel9@sha256%3A3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776950029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-agent-rhel9@sha256%3A9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776773976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-controller-rhel9@sha256%3Aa73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776950044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-service-9-rhel9@sha256%3A233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776987609"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-image-service-rhel9@sha256%3A8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776967957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-rhel9@sha256%3Ae11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776950029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-agent-rhel9@sha256%3A49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776773976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-controller-rhel9@sha256%3A715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776950044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-service-9-rhel9@sha256%3Ad90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776987609"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-image-service-rhel9@sha256%3Ab2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776967957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-rhel9@sha256%3Ac5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776950029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-agent-rhel9@sha256%3A6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776773976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-controller-rhel9@sha256%3Ae364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776950044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-service-9-rhel9@sha256%3A1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776987609"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-image-service-rhel9@sha256%3Aa2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776967957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-rhel9@sha256%3A93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776950029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-agent-rhel9@sha256%3A8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776773976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-controller-rhel9@sha256%3A520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776950044"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-service-9-rhel9@sha256%3A3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776987609"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64 as a component of multicluster engine for Kubernetes 2.11",
"product_id": "multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.11"
}
]
},
"vulnerabilities": [
{
"acknowledgments": [
{
"names": [
"Omer Vishlitzky",
"Nick Carboni",
"Riccardo Piccoli"
],
"organization": "Red Hat",
"summary": "This issue was discovered by Red Hat."
}
],
"cve": "CVE-2026-7163",
"cwe": {
"id": "CWE-312",
"name": "Cleartext Storage of Sensitive Information"
},
"discovery_date": "2026-04-27T04:18:06.534000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463152"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability in the assisted-service REST API, an optional Assisted Installer (assisted-service) component in the Multicluster Engine (MCE), allows an authenticated user with minimal namespace-scoped privileges to obtain administrative credentials for arbitrary clusters provisioned through the hub. \n\nThe credentials download endpoint (GET /v2/clusters/{cluster_id}/credentials, which returns the kubeadmin password) and the kubeconfig download endpoint are operational in AUTH_TYPE=local mode, the only authentication mode available in on-premises ACM/MCE hub deployments. The local authenticator unconditionally grants full administrative access to any request bearing a valid JWT, with no per-endpoint restrictions. A valid local JWT is embedded as a plaintext query parameter in InfraEnvStatus.ISODownloadURL and is readable by any user who has get rights on an InfraEnv object in their own namespace.\n\nThe affected components ship as part of Multicluster Engine (MCE). The Red Hat Advanced Cluster Management (ACM) deployments that include MCE are equally affected.\nThis issue does not affect the hosted SaaS offering (console.redhat.com), which uses a different authentication mode.\n\nSuccessful exploitation gives the attacker the kubeadmin password and kubeconfig for any OpenShift cluster provisioned through the affected hub, granting unrestricted root-level administrative access to those spoke clusters.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "assisted-service: assisted-service: Authenticated users can gain administrative access to OpenShift clusters via credential disclosure",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important vulnerability affecting on-premises deployments of Multicluster Engine (MCE) and Red Hat Advanced Cluster Management (ACM). An authenticated user with namespace-scoped privileges can exploit a flaw in the `assisted-service` REST API to retrieve administrative credentials for OpenShift clusters provisioned through the hub. This grants unrestricted root-level administrative access to affected spoke clusters, stemming from the `AUTH_TYPE=local` mode\u0027s unconditional administrative access with a valid local JWT, which is exposed in plaintext.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-7163"
},
{
"category": "external",
"summary": "RHBZ#2463152",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463152"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-7163",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-7163"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-7163",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-7163"
}
],
"release_date": "2026-04-30T12:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T13:40:21+00:00",
"details": "For more information about Assisted Installer, see the following documentation:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.16/html/clusters/cluster_mce_overview#cim-intro\n\nFor multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.16/html/clusters/cluster_mce_overview#mce-install-intro\n\nThis documentation will be available after the general availability release of Red Hat Advanced Cluster Management 2.16.",
"product_ids": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12337"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "ADJACENT_NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "assisted-service: assisted-service: Authenticated users can gain administrative access to OpenShift clusters via credential disclosure"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_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 engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_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-04-30T13:40:21+00:00",
"details": "For more information about Assisted Installer, see the following documentation:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.16/html/clusters/cluster_mce_overview#cim-intro\n\nFor multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.16/html/clusters/cluster_mce_overview#mce-install-intro\n\nThis documentation will be available after the general availability release of Red Hat Advanced Cluster Management 2.16.",
"product_ids": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12337"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_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 engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:8280d5b264d82f646a074ba80a28e518c65eda85210dd73dcce1305baf3db753_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:a2c980a42ab1e99d5c6074552782255ebc5b6275237f4d2cb1bfe5d4f1acb490_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:b2fc9804cf2aa1878c1fb851078a674463764be90c36ddbaa97f77789370efe3_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f25ec53e76b16f620e5e067ccd57005267691bb910989a704e6cd86329372c9a_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:49c62e8ac4762849f1596729a752cd88a0d6aefb40a7a459e9b22493c1e275fd_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:6cc1e0e0351c80d62ff578df84de51759c5d611d4650f9047fe9053e6afa6faf_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:8a251e3cb7bca9d6c3ed20829849bfc6361c8c168feef6dab7c1e06ada9ecce0_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:9f5ee10acc225f6e4aba6fdbfcfe01851cf1483181be2ade6f0b002990316079_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:520b5b7722318d06646aa55a3fe98359aab8d3fa011bf8ca1e52e111a43afe1a_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:715a03b50ac63a96f6256bb7f0685e8fd22d59ded6746c9bd8ff464970cce19a_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:a73d454ca721268d3ba17a6b3c9a76f8f80c2acbf28e6f94c507e388301bf531_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:e364c549150a4ee3ba20d9fa199d0dca2173cbb6486f232e59e9bf1ced7054b7_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:3b00ae767102c4073f4a55f4962cbd4cfcc8ac6b52620da7fa3010c5b8d39799_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:93d8e7a6bfefcb523c18dad0c84e99e38574b0025720161bdbd088033c4c8c4f_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:c5761317d9acf329047e751d6d2573c4edfe136e06d752d2f6aeef2006b71392_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e11544a9a4c4d501a4b863d58230d7e4649c90e23b3557ae4a09aed9ec7dc6cb_arm64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:1133ab36a25af5c4c813b104d26502705be4932c334641243a6fb390637a6e17_ppc64le",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:233424d7f85dbc64152a7c08c48db76cff54a4845e088384d6f1d48194fae646_amd64",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3c5128eee15019b8775c87a78caf1e4a40e9fe3b52daa9622b0238a3607fd251_s390x",
"multicluster engine for Kubernetes 2.11:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:d90e9b64aca66528a4d359b506b2d338fba7ac9072ce4292c6498848ee20bf7a_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:13548
Vulnerability from csaf_redhat - Published: 2026-05-04 17:19 - Updated: 2026-06-28 22:55A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 | — |
Workaround
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 | — |
Workaround
|
A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 | — |
Workaround
|
A flaw was found in the `github.com/antchfx/xpath` component. A remote attacker could exploit this vulnerability by submitting crafted Boolean XPath expressions that evaluate to true. This can cause an infinite loop in the `logicalQuery.Select` function, leading to 100% CPU utilization and a Denial of Service (DoS) condition for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 | — |
Workaround
|
A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 | — |
Workaround
|
A denial of service flaw has been discovered in the Axios npm package. the mergeConfig function in axios crashes with a TypeError when processing configuration objects containing __proto__ as an own property. An attacker can trigger this by providing a malicious configuration object created via JSON.parse(), causing complete denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 | — |
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: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 | — |
Workaround
|
A flaw was found in Axios, a promise-based HTTP client. This vulnerability, known as Prototype Pollution, can be exploited through a specific "Gadget" attack chain. This allows an attacker to escalate a Prototype Pollution vulnerability in a third-party dependency, potentially leading to remote code execution or a full cloud compromise, such as bypassing AWS IMDSv2.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat Advanced Cluster Management for Kubernetes 2.15 General\nAvailability release images, which add new features and enhancements, bug\nfixes, and updated container images.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat Advanced Cluster Management for Kubernetes 2.15 images\n\nRed Hat Advanced Cluster Management for Kubernetes provides the\ncapabilities to address common challenges that administrators and site\nreliability engineers face as they work across a range of public and\nprivate cloud environments. Clusters and applications are all visible and\nmanaged from a single console\u2014with security policy built in.\n\nThis advisory contains the container images for Red Hat Advanced Cluster\nManagement for Kubernetes, which add new features and enhancements, bug\nfixes, and updated container images. See the following\nRelease Notes documentation, which will be updated shortly for this\nrelease, for additional details about this release:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.15/html-single/release_notes/index#acm-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:13548",
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"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-2025-61726",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25639",
"url": "https://access.redhat.com/security/cve/CVE-2026-25639"
},
{
"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-32285",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"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-40175",
"url": "https://access.redhat.com/security/cve/CVE-2026-40175"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4645",
"url": "https://access.redhat.com/security/cve/CVE-2026-4645"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_13548.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Advanced Cluster Management for Kubernetes v2.15.2 security update",
"tracking": {
"current_release_date": "2026-06-28T22:55:06+00:00",
"generator": {
"date": "2026-06-28T22:55:06+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:13548",
"initial_release_date": "2026-05-04T17:19:48+00:00",
"revision_history": [
{
"date": "2026-05-04T17:19:48+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-11T21:24:57+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:06+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product": {
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:acm:2.15::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Management for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-cli-rhel9@sha256%3Afa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777138376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"product_id": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cert-policy-controller-rhel9@sha256%3A4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"product_id": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-backup-rhel9-operator@sha256%3A5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777127371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-cluster-permission-rhel9@sha256%3Aea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"product_id": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/config-policy-controller-rhel9@sha256%3A1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776815733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"product_id": "registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/console-rhel9@sha256%3A762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776927126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"product_id": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/endpoint-monitoring-rhel9-operator@sha256%3A520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-addon-controller-rhel9@sha256%3A5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776817795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-framework-addon-rhel9@sha256%3Ad6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776395605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"product_id": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/governance-policy-propagator-rhel9@sha256%3Ac44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777141836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-grafana-rhel9@sha256%3A08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777142269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"product_id": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/grafana-dashboard-loader-rhel9@sha256%3A0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777045404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"product_id": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-client-rhel9@sha256%3Abaf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776440706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"product_id": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-metrics-rhel9@sha256%3Af40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"product_id": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"product_identification_helper": {
"purl": "pkg:oci/klusterlet-addon-controller-rhel9@sha256%3A218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777073839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"product_id": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-rhel9@sha256%3A733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776440738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"product_id": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-state-metrics-rhel9@sha256%3A04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776751544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"product_id": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/memcached-exporter-rhel9@sha256%3A79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776555620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"product_id": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"product_identification_helper": {
"purl": "pkg:oci/metrics-collector-rhel9@sha256%3A4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777045436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"product_id": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mtv-integrations-rhel9@sha256%3A1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776437108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"product_id": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-integrations-rhel9@sha256%3Aca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777050973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-multicluster-observability-addon-rhel9@sha256%3A139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-observability-rhel9-operator@sha256%3Afb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-application-rhel9@sha256%3A32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160264"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-channel-rhel9@sha256%3Ab2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776641849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-subscription-rhel9@sha256%3Add7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777040039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"product_id": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-role-assignment-rhel9@sha256%3A6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776972406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"product_id": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multiclusterhub-rhel9@sha256%3Acbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776693014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-must-gather-rhel9@sha256%3A19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776998139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"product_id": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/node-exporter-rhel9@sha256%3Aaed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9@sha256%3Ae7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9-operator@sha256%3A468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"product_id": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-rhel9@sha256%3Af03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"product_id": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-alertmanager-rhel9@sha256%3A0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777124971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-config-reloader-rhel9@sha256%3A3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776901038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-rhel9@sha256%3Aa9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776901037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"product_id": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rbac-query-proxy-rhel9@sha256%3Ae2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"product_id": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"product_identification_helper": {
"purl": "pkg:oci/search-collector-rhel9@sha256%3A1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777419474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-indexer-rhel9@sha256%3A0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-api-rhel9@sha256%3A73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-rhel9@sha256%3Ad95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-siteconfig-rhel9@sha256%3A0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777453333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"product_id": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-addon-rhel9@sha256%3A02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777363547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64",
"product_id": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/thanos-rhel9@sha256%3Ae39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777385175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"product_id": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/thanos-receive-controller-rhel9@sha256%3Af13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777385120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"product_id": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"product_identification_helper": {
"purl": "pkg:oci/acm-volsync-addon-controller-rhel9@sha256%3A09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777406548"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-cli-rhel9@sha256%3A60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777138376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"product_id": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cert-policy-controller-rhel9@sha256%3A61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"product_id": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-backup-rhel9-operator@sha256%3Afe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777127371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-cluster-permission-rhel9@sha256%3Aab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"product_id": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/config-policy-controller-rhel9@sha256%3A3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776815733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"product_id": "registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/console-rhel9@sha256%3A005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776927126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"product_id": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/endpoint-monitoring-rhel9-operator@sha256%3A845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-addon-controller-rhel9@sha256%3A6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776817795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-framework-addon-rhel9@sha256%3A9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776395605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"product_id": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/governance-policy-propagator-rhel9@sha256%3Ab16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777141836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-grafana-rhel9@sha256%3A256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777142269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"product_id": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/grafana-dashboard-loader-rhel9@sha256%3Adf5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777045404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"product_id": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-client-rhel9@sha256%3Ac54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776440706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"product_id": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-metrics-rhel9@sha256%3A06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"product_id": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/klusterlet-addon-controller-rhel9@sha256%3A69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777073839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"product_id": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-rhel9@sha256%3Aea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776440738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"product_id": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-state-metrics-rhel9@sha256%3A41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776751544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"product_id": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"product_identification_helper": {
"purl": "pkg:oci/memcached-exporter-rhel9@sha256%3Af38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776555620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"product_id": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"product_identification_helper": {
"purl": "pkg:oci/metrics-collector-rhel9@sha256%3A8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777045436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"product_id": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mtv-integrations-rhel9@sha256%3A56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776437108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"product_id": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-integrations-rhel9@sha256%3Adeaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777050973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-multicluster-observability-addon-rhel9@sha256%3Af31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-observability-rhel9-operator@sha256%3A120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-application-rhel9@sha256%3Aacfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160264"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-channel-rhel9@sha256%3Aa248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776641849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-subscription-rhel9@sha256%3Ae202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777040039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"product_id": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-role-assignment-rhel9@sha256%3A45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776972406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"product_id": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multiclusterhub-rhel9@sha256%3A8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776693014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-must-gather-rhel9@sha256%3A717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776998139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"product_id": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/node-exporter-rhel9@sha256%3A96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9@sha256%3A007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9-operator@sha256%3A3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"product_id": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-rhel9@sha256%3A743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"product_id": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-alertmanager-rhel9@sha256%3Af6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777124971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-config-reloader-rhel9@sha256%3A29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776901038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-rhel9@sha256%3A1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776901037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"product_id": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rbac-query-proxy-rhel9@sha256%3A94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"product_id": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/search-collector-rhel9@sha256%3Ad048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777419474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-indexer-rhel9@sha256%3Ab0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-api-rhel9@sha256%3Abb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-rhel9@sha256%3A02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-siteconfig-rhel9@sha256%3Afbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777453333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"product_id": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/submariner-addon-rhel9@sha256%3A476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777363547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"product_id": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/thanos-rhel9@sha256%3Ab7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777385175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"product_id": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/thanos-receive-controller-rhel9@sha256%3Aab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777385120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"product_id": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/acm-volsync-addon-controller-rhel9@sha256%3A2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777406548"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-cli-rhel9@sha256%3Ac5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777138376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"product_id": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cert-policy-controller-rhel9@sha256%3A9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"product_id": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-backup-rhel9-operator@sha256%3A1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777127371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-cluster-permission-rhel9@sha256%3A6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"product_id": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/config-policy-controller-rhel9@sha256%3Ad74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776815733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"product_id": "registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/console-rhel9@sha256%3Aea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776927126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"product_id": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/endpoint-monitoring-rhel9-operator@sha256%3A3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-addon-controller-rhel9@sha256%3Ab5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776817795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-framework-addon-rhel9@sha256%3Ad4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776395605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"product_id": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/governance-policy-propagator-rhel9@sha256%3Aa0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777141836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-grafana-rhel9@sha256%3A3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777142269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"product_id": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/grafana-dashboard-loader-rhel9@sha256%3A3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777045404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"product_id": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-client-rhel9@sha256%3A6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776440706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"product_id": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-metrics-rhel9@sha256%3A4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"product_id": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/klusterlet-addon-controller-rhel9@sha256%3Aad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777073839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"product_id": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-rhel9@sha256%3Ab32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776440738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"product_id": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-state-metrics-rhel9@sha256%3Aaab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776751544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"product_id": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/memcached-exporter-rhel9@sha256%3Aff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776555620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"product_id": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/metrics-collector-rhel9@sha256%3A3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777045436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"product_id": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mtv-integrations-rhel9@sha256%3Ae45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776437108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-integrations-rhel9@sha256%3Aa519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777050973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-multicluster-observability-addon-rhel9@sha256%3A7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-observability-rhel9-operator@sha256%3A3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-application-rhel9@sha256%3A7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160264"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-channel-rhel9@sha256%3Acfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776641849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-subscription-rhel9@sha256%3A1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777040039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-role-assignment-rhel9@sha256%3A0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776972406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"product_id": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multiclusterhub-rhel9@sha256%3A4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776693014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-must-gather-rhel9@sha256%3Ab6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776998139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"product_id": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/node-exporter-rhel9@sha256%3A3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9@sha256%3Abb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9-operator@sha256%3Aea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"product_id": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-rhel9@sha256%3A2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"product_id": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-alertmanager-rhel9@sha256%3A3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777124971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-config-reloader-rhel9@sha256%3A833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776901038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-rhel9@sha256%3A4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776901037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"product_id": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rbac-query-proxy-rhel9@sha256%3A66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"product_id": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/search-collector-rhel9@sha256%3Aa6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777419474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-indexer-rhel9@sha256%3A33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-api-rhel9@sha256%3A318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-rhel9@sha256%3Af7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-siteconfig-rhel9@sha256%3A4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777453333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"product_id": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/submariner-addon-rhel9@sha256%3A3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777363547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"product_id": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/thanos-rhel9@sha256%3Ac3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777385175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"product_id": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/thanos-receive-controller-rhel9@sha256%3Ae74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777385120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"product_id": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/acm-volsync-addon-controller-rhel9@sha256%3Ad040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777406548"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-cli-rhel9@sha256%3Af20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777138376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"product_id": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cert-policy-controller-rhel9@sha256%3Aef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"product_id": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-backup-rhel9-operator@sha256%3Ac32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777127371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-cluster-permission-rhel9@sha256%3Aa6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"product_id": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/config-policy-controller-rhel9@sha256%3A7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776815733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"product_id": "registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"product_identification_helper": {
"purl": "pkg:oci/console-rhel9@sha256%3Adb228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776927126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"product_id": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/endpoint-monitoring-rhel9-operator@sha256%3Ae14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728327"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-addon-controller-rhel9@sha256%3A2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776817795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-governance-policy-framework-addon-rhel9@sha256%3A90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776395605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"product_id": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/governance-policy-propagator-rhel9@sha256%3Aac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777141836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-grafana-rhel9@sha256%3Aa97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777142269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"product_id": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/grafana-dashboard-loader-rhel9@sha256%3Ab48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777045404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"product_id": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-client-rhel9@sha256%3A999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776440706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"product_id": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-metrics-rhel9@sha256%3A8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"product_id": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/klusterlet-addon-controller-rhel9@sha256%3Abc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777073839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"product_id": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-rhel9@sha256%3Acb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776440738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"product_id": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-state-metrics-rhel9@sha256%3Abac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776751544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"product_id": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/memcached-exporter-rhel9@sha256%3A1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776555620"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"product_id": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/metrics-collector-rhel9@sha256%3Aa0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777045436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"product_id": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mtv-integrations-rhel9@sha256%3A1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776437108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"product_id": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-integrations-rhel9@sha256%3A7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777050973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-multicluster-observability-addon-rhel9@sha256%3A7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824049"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-observability-rhel9-operator@sha256%3Ad6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776824074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-application-rhel9@sha256%3A93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160264"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-channel-rhel9@sha256%3A8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776641849"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-operators-subscription-rhel9@sha256%3A5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777040039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"product_id": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-role-assignment-rhel9@sha256%3Ad697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776972406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"product_id": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multiclusterhub-rhel9@sha256%3A269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776693014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-must-gather-rhel9@sha256%3A71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776998139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"product_id": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/node-exporter-rhel9@sha256%3A559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9@sha256%3Adef849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"product_id": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/observatorium-rhel9-operator@sha256%3A8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"product_id": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-rhel9@sha256%3A2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"product_id": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/prometheus-alertmanager-rhel9@sha256%3Ab79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777124971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-config-reloader-rhel9@sha256%3Ad7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776901038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-prometheus-rhel9@sha256%3A0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776901037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"product_id": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rbac-query-proxy-rhel9@sha256%3A4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1776728362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"product_id": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"product_identification_helper": {
"purl": "pkg:oci/search-collector-rhel9@sha256%3A03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777419474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-indexer-rhel9@sha256%3Ab655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-api-rhel9@sha256%3A60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-search-v2-rhel9@sha256%3Aaa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777160288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-siteconfig-rhel9@sha256%3A226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777453333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"product_id": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/submariner-addon-rhel9@sha256%3A5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777363547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"product_id": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/thanos-rhel9@sha256%3A7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777385175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"product_id": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/thanos-receive-controller-rhel9@sha256%3A7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777385120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"product_id": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/acm-volsync-addon-controller-rhel9@sha256%3Afdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777406548"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-13465",
"cwe": {
"id": "CWE-1321",
"name": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)"
},
"discovery_date": "2026-01-21T20:01:28.774829+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431740"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: prototype pollution in _.unset and _.omit functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is only exploitable by applications using the _.unset and _.omit functions on an object and allowing user input to determine the path of the property to be removed. This issue only allows the deletion of properties but does not allow overwriting their behavior, limiting the impact to a denial of service. Due to this reason, this vulnerability has been rated with an important severity.\n\nIn Grafana, JavaScript code runs only in the browser, while the server side is all Golang. Therefore, the worst-case scenario is a loss of functionality in the client application inside the browser. To reflect this, the CVSS availability metric and the severity of the Grafana and the Grafana-PCP component have been updated to low and moderate, respectively.\n\nThe lodash dependency is bundled and used by the pcs-web-ui component of the PCS package. In Red Hat Enterprise Linux 8.10, the pcs-web-ui component is no longer included in the PCS package. As a result, RHEL 8.10 does not ship the vulnerable lodash component within PCS and is therefore not-affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: prototype pollution in _.unset and _.omit functions"
},
{
"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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2026-4645",
"discovery_date": "2026-03-23T06:02:52.120840+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `github.com/antchfx/xpath` component. A remote attacker could exploit this vulnerability by submitting crafted Boolean XPath expressions that evaluate to true. This can cause an infinite loop in the `logicalQuery.Select` function, leading to 100% CPU utilization and a Denial of Service (DoS) condition for the affected system.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "A denial of service vulnerability was discovered in `github.com/antchfx/xpath`, with Important severity. Systems processing untrusted XPath expressions are vulnerable to an infinite loop, leading to 100% CPU utilization which would impact normal operations of the 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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4645"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4645",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4645"
}
],
"release_date": "2026-03-17T20:58:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "To mitigate this issue, restrict the processing of untrusted or unvalidated XPath expressions by applications which utilize the `github.com/antchfx/xpath` component. Implement input validation and sanitization for all XPath expressions originating from external or untrusted sources. If possible, configure applications to only process XPath expressions from trusted sources or disable features that allow arbitrary XPath expression evaluation.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/antchfx/xpath: xpath: Denial of Service via crafted Boolean XPath expressions"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open 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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
},
{
"cve": "CVE-2026-25639",
"cwe": {
"id": "CWE-1287",
"name": "Improper Validation of Specified Type of Input"
},
"discovery_date": "2026-02-09T21:00:49.280114+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2438237"
}
],
"notes": [
{
"category": "description",
"text": "A denial of service flaw has been discovered in the Axios npm package. the mergeConfig function in axios crashes with a TypeError when processing configuration objects containing __proto__ as an own property. An attacker can trigger this by providing a malicious configuration object created via JSON.parse(), causing complete denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios affected by Denial of Service via __proto__ Key in mergeConfig",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25639"
},
{
"category": "external",
"summary": "RHBZ#2438237",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2438237"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25639",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25639"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25639",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25639"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/commit/28c721588c7a77e7503d0a434e016f852c597b57",
"url": "https://github.com/axios/axios/commit/28c721588c7a77e7503d0a434e016f852c597b57"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/releases/tag/v1.13.5",
"url": "https://github.com/axios/axios/releases/tag/v1.13.5"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/security/advisories/GHSA-43fc-jf86-j433",
"url": "https://github.com/axios/axios/security/advisories/GHSA-43fc-jf86-j433"
}
],
"release_date": "2026-02-09T20:11:22.374000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios affected by Denial of Service via __proto__ Key in mergeConfig"
},
{
"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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
}
],
"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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"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": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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 Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_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-40175",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-04-10T20:02:10.296601+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Axios, a promise-based HTTP client. This vulnerability, known as Prototype Pollution, can be exploited through a specific \"Gadget\" attack chain. This allows an attacker to escalate a Prototype Pollution vulnerability in a third-party dependency, potentially leading to remote code execution or a full cloud compromise, such as bypassing AWS IMDSv2.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "axios: Axios: Remote Code Execution via Prototype Pollution escalation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The Axios library, a promise-based HTTP client, is susceptible to an Important prototype pollution vulnerability. This flaw, when combined with specific \"Gadget\" attack chains in third-party dependencies, can lead to remote code execution or full cloud compromise, including bypassing AWS IMDSv2.\n \nWith pollution check patch available in Axios gives an advantage, it remains vulnerable due to HTTP Header Sanitation and Server-Side Request Forgery threat.\n\nRed Hat products that incorporate the vulnerable Axios library are affected.\n\nThe openshift4/ose-monitoring-plugin-rhel9 container image is not vulnerable to this flaw. The affected component is used as a build-time dependency but it\u0027s not shipped in the final product, meaning the flaw is not present thus cannot be exploited in the container deployments.\n\nRegarding openshift4/ose-console for Product stream 4.12 and 4.13, the vulnerable component is present (indirect dependency), but the vulnerability is not exploitable in our case due to the browser runtime, where the required Node.js-specific attack vectors are not available. With this, the impact becomes low.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40175"
},
{
"category": "external",
"summary": "RHBZ#2457432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40175",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40175"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40175",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40175"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/commit/363185461b90b1b78845dc8a99a1f103d9b122a1",
"url": "https://github.com/axios/axios/commit/363185461b90b1b78845dc8a99a1f103d9b122a1"
},
{
"category": "external",
"summary": "https://github.com/axios/axios/pull/10660",
"url": "https://github.com/axios/axios/pull/10660"
},
{
"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-fvcv-3m26-pcqx",
"url": "https://github.com/axios/axios/security/advisories/GHSA-fvcv-3m26-pcqx"
}
],
"release_date": "2026-04-10T19:23:52.285000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-04T17:19:48+00:00",
"details": "Before you apply this update, make sure all previously released errata\nthat are relevant to your system are applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13548"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.0,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:60065dbc53bb557903a9b64b6d125ec9b1cc079219820ef3e130a6de1c31a344_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:c5e28c2806be10fb75b30adf2a97c43544dcb51435cf00807a116d7d99720d17_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:f20db2439e0a790e6b1c78770ffb6dcfc0104713d2e8201f6b5b9de1295781cc_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cli-rhel9@sha256:fa7e83bb54b4933cd659946cd4229667c691cac019d9997d5f828eb0c6fcfabc_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:6664a9064f3da9d60819ad3ada04c9b4ceb4ea2d5d7f74627083e782163c05ac_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:a6b2af53c56da44480240dcca6a72c3a650a540149ff0bc0325532fcdd13ca13_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ab4c94b227afa4d17c00714b606e540a969c6fe85406dedfa24163586218da27_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-cluster-permission-rhel9@sha256:ea837be842753d52b5a2df7f45372f1ede0497ea477e4109b77589afab4d6b08_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:2c595aed572b9a851314ad8b7bcbfed30296f90f86cd5e973642d1625d14a007_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:5a0a4f6eaa4ab83bb6eab21ace418d5479fea3264dacdf775c8460eb71437a0c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:6902779011f15e1dc9a2cfcd5506ca90144d6db7eaecf25c30734ed28399548d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel9@sha256:b5f297ec8554c1a9436ac8a00382d51d6b5b97e8afa3c4572cc8c6b0230d6a82_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:90438caf8bfd26f515d860aecf57a8c0e8df09552a0261920a15809caf51e8ed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:9b7f6a66aaf4da4f35eb903eed24fffd24a4e3a755903056391c38c4cca910c2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d4084698590388f90218d2f0ed5461f89ef92b15d6a24a14c405eec019988339_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel9@sha256:d6588c327c81ff582c94c04f5778545ad6a33f6565f4c92f0b370da0e88c8c07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:139b9d6a3d694fc65c3e3bc657b51d4415991074dbb1a996a157ae0b166c1794_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7022651f3c75f56614d6d6672d6913e4544b9ec8515ce6cc48584ec976904d2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:7844ddb3d5dbdcc3007e0f925f82cfe5559901b022cff780755b76243212408f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-multicluster-observability-addon-rhel9@sha256:f31430730d261174629bcc858733392f61e850641b570e13e97a955512113e4e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:19ecedec85f74f07230653f5a353742b382618b28fb182154b41e8f95db40611_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:71334d9c7559dc933e9e0dc1677c7d8ebbfa3f541378230dcfebe6a8835ed0b4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:717cae9be4c4d30321db1c6724c349a609975bfc30176235bd3f675ad249e866_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-must-gather-rhel9@sha256:b6e18a4ff1bb1312466d4cef97537874506b42de08ba44dbf088e3745bf5a779_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:29df4aae19c1ab73ff0b31095f1970f0d5b704555ecedfbf9e8a499f6bed8bcf_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:3efb508828bddec21946404cf70a1d6c3041f70fd7100596eb4fa0635e67d9f3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:833e935af4db0ac474d4e71ba86f25727e2c60db9ce7a2bcb5df190b22b5e522_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel9@sha256:d7e97b23ce85ed83beb3040cc7bca71d440f2e236e7ddcdb4dc32add0be3406e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:0fc6972ab9016f0f80a13705861ef05dbf15457bb72adbee268cdafa5f8ffb8b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:1ba117a0c8edf3bf85d67582d4d1f14126200a242e9dd8223475b0c3e1346008_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:4fd369fff2033b2994c17496ca43217f778b731db27ece7e3c8083ff70156d40_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-prometheus-rhel9@sha256:a9c6ad4020b768ca81961833e991838477312cdee2ce0c0efc981ccdd3dabd59_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:0a794bcfd03b8c0ac0cc75bc1ff894bebcf294b8262ca18f81cf31e065d99608_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:33ffba1b369679d9497fd12ddc937fea5b89cd36d662da5ea6be62be5f5e1878_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b0a40255ce82a7a7b248727791bd22f92b0b2e5f84a0462f5a8e3c0f82913a8c_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-indexer-rhel9@sha256:b655b9c1657df14711b76589fad0c23459c378d120947b5144936a5d658c4914_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:318a574dff8d7a5101fe874f9c867656e99cd19ae1cbd6d063c9adc379343b15_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:60cb18332ab19515004fab59d794455c451e080a95552de84863f1972be83bd6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:73d1d87f85b62313c71b1f01138dd09fd0ba2df5a6f09dd73e86e0bc68fb2bc7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-api-rhel9@sha256:bb183f0111692ab3506bc6e2fc7c3f100685638831b54806d343a81e19765e70_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:02b49a07aa54b949a1d353572c01770ea6f903b468bd1209f7c7c545621106dc_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:aa90fc460ecc21a696704e4c0903c21f7f4076e87702f00d774d35af0985dc22_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:d95b25b41cec93697a0223b172c7ec0f033c51241a9fc812c9ffa12107b18b8d_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-search-v2-rhel9@sha256:f7e78bd2b9a728e0ff56ac08b1312a6d53eace9380ee5d2aa00d054df8572468_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:0a9563d52caa8873dfc527abc238ac930cfb1f847ec663c06ab62bca2e247754_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:226357613743efc5fea0358d9a8ea31fe55d7dd1728d7ddf021ffdbe68714fed_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:4f21badcb96cd750380680955aa1779ed493d1c5d6b7e81dcb6de48c450576a7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-siteconfig-rhel9@sha256:fbc1b102edb548874d874a7a9306e1f430b9ec435accd34c5df8cae727f32c5a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:09facf46769a39bcec8a727c217859596bb37fccf0629ce46a43df8bc7230337_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:2f85137f73406e5db3cd2aad741a6fb9d5239a649e692bf41b3a6ac3cd8d60d7_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:d040848edcde3c1709875f5b1636976b4d5866f7530761b95dc0c8d7fc6c9bcb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel9@sha256:fdaa1e9a4d18f0e0ea387db6b4f798a89671a4a2563c202b233024c212f7e4a1_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:4cf80f14615ddfcdc5ec3ed72ceff07734328135d4253a2da645e705e6a62a31_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:61c43df46c097d5d602b60636d921a992bbb7f13d1e2cb0482b8346f0a477311_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:9626ae30941c96e07666415117aa15fd98b8dc07080c90107eb1df7bd62aec22_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cert-policy-controller-rhel9@sha256:ef556c69ada03f501857e0471f4c1a7830e5b204032472678948f7e7823d632f_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:1c2636e91e173f4583b26dbfa8a4894aaa947e6f881c073b325b825ad8a39411_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:5d4ee42de6459ef2ad5b8700f27fef0e7133d473fea2262150c5c6b370d1d595_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:c32a6bece0fb770709053e4b1c23d8c6e65c7d31206bba41249630cd02b4831d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/cluster-backup-rhel9-operator@sha256:fe6fbe77675508a658f5889582bee752f5d3f14b861f3d8275e335d56ebea395_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:1695114b9f8b04fd7cbc79dc24acb02803208e735b231495d65e6424408093da_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:3215819dec493e64db431cc3a3c44b2ddb3bab2ecc553a05652d78dadd45e91b_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:7483565737d64704c68aaa72c4c6c309568f9863f332b8cf00109c088309a21d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/config-policy-controller-rhel9@sha256:d74754c7d2a069814f1f5e96c6e71a3388fbd516f9ea248131c24c9da3ba83c7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:005cc237025bf272708dface9af1f8df5a1f504932fcd089d99d7218999488a2_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:762a58482d40b887b1f5c27ecf11d8a63a9b76a207bf74396eaa007e679551aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:db228f14fbbbcc811ada13867bdff1fedb287f518fc0e9853fee58d453838157_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/console-rhel9@sha256:ea1cc0b2ce316e68e2c3419090dec8f4cbf1e4766f3adc1658ddacf9a146bf16_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:3611b44cc7b1daf047d9315dd9d652a24576909a05016514c1e11b81fa6c0efa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:520bdb848e137f7f8b5ca9cb703d966267bd962c546f661421660dac215767ed_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:845596d640d496f725bd559047b235b8f03e221a155c8d7c627f12ea6ac2ea05_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/endpoint-monitoring-rhel9-operator@sha256:e14970e02d55470441bd08f7e72d05c7267629aa9962b2cda54516ef76d308fa_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:a0ddb44cc0b746e0cb15a5b6eae2baa04571dd5d2d7c18effd47bf7df7c07d32_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:ac4ce6f6a8b8402a3812e93dffd91ee00853904ed4775718711aa27da0fd956e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:b16bfa6d282db984cb31d420ea6480312fe8502ca77a1d657835074f8466b5a5_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/governance-policy-propagator-rhel9@sha256:c44b273cb28b311208e1bc68098aaea0957fda90511f67dc87887dedbb16bf07_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:0f17e1cf1c2697423fb222d0022f7d3b48358f37b957cf1e44d62bf4b009d3cd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:3b011cc8605ef763851ef236d802c2752ad7f86be57f826d447a96dbc5a3532e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:b48b9ecc8ccea2254886719a5787dca38e5245770a720545093e5c060737bdbf_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel9@sha256:df5ddc0c14b4fdab15af20293688f10bb55d6fbb189be0a6555ee7ae70b37de0_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:6ec39e1f8af856db1bcadcdc9cd440d2f26fb4922cc2f7b2896d95659a12362a_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:999efecfa135a00f4a0bf20f42c35d89dec0f445a1ad66dc4706b95d6a6c5a06_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:baf754a933b3a022518b3cfacf0ab6e7322f3ed73d103f8b0f6e46150e294b75_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-client-rhel9@sha256:c54a3a9d3825d5a8e384af902e34faa7af9dbdd8ea578ebef0a7560e64814345_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:06427dcd076dfbeb78788672b28aae9ec07010d50525aca58f91f8bd37f8f90a_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:4ca30e03fb2a512f68ce557939bbefaf04a0c05b536765093d90df00a16694e4_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:8e076246c333134f090a5011ee126bd8b64c32425100364bd17ecee4eaa82ca4_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/insights-metrics-rhel9@sha256:f40c00ba66022cee9a40b096b1531d24ecd53a2e5b930facc71c8d1d5aaa2ab8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:218a4a088444d5b79a652122f6a56a92e3e16d306c78e7491207ddb700486945_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:69972f07e9dac5afec7809663f827dd6e9d446dbc5be7efcb7780e1a1bb5c99f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:ad0916c7a05982e0e97286acbe5f76d41016f5a3ded75d8b0fa0cda4a9651fe7_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel9@sha256:bc2860c0ed7f6d7de3cf80503ef917237cf62a1cf74dd8f77bc2711f7b1638d2_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:733ef47f20da8b6269808f1f0616927d33051bec52e2e7710ed9e33f4738511c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:b32c0f59984cbd099491e9b27b2a1492bf3f79bb91a63cc4d570f502bdc7404b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:cb04b656d75e8ad2eedff56a20eda8bd0479c71707a5754c861f8c86abface17_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-rbac-proxy-rhel9@sha256:ea400858419d61d302312a6825b5dee0ee1926c9fb7989161202d56e7c2b035e_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:04ab29885be26c3c2f89d009d68d4b9b7b4fcc183c060d64cbc5c13534a29def_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:41ad53b2534633c8cd23c0d95a70d3584630562d90ebd77b708aea4bf5433ec9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:aab0d9e16ce5e06c1496d77687a57b5e553875ab9759c5a9946dedf4ac867e4d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/kube-state-metrics-rhel9@sha256:bac4489fe8d688a764713a2b709d82617830640700b9e12c27b5e45363b80f6d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:1499c54d337ccdc0d62b0da0abdacf8ce3e85b6c0aca3f81e36f0f07bc346a2d_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:79783eafdd67df428a70ba1199f34bbdb6b4d62e8aa87bf656f9c5f6ddcbadd7_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:f38bf47f740a0516e09bc92ab30001a8ebcd8537a3f5abf5697c794d3de57444_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/memcached-exporter-rhel9@sha256:ff5463982f93382778ca15dd931694f261be076f524a66b21557a956cf062747_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:3d044ecba546709dbdc79cffa85d195633f512f3e7af8ee0f0b3e4e7d20e311d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:4a0ce92aed8055bc18ad2a0c47ddd07fddd728c5c169ec5dcf2ba42949ad2634_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:8236cbe254425e3da9573167879caf5e57933fc1a4b10bbc275b1f26e7452973_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/metrics-collector-rhel9@sha256:a0b9b1a9d53bf3bc15df9659c7293f37a5fd96f6ca2db390a36082983f2a5da5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1533ee686e6f6a806451d82d5c0412c17e38601fa3d0a6a8d5694a85a3cbb312_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:1e7247bd016c5f241affe69da3ef1325d9fc62c7b24c7d25fe5984d318c52f4c_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:56dd71207014435f87a35b9c5a6945d224498a156029e61a6ce8598615d96fae_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/mtv-integrations-rhel9@sha256:e45cc2815f98c87b9cfbd6a1b26e8ee10f77b52258bd6182d9a568b0dea32ee3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:7a280af10e2f87748a46c69d610b955280a2103624dbc79c5d66bdbe25e8f27b_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:a519d1882b8063ff9714196cc5478e590a521dde59db1c42606e25fe4315e599_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:ca2106fa969e0769e38f8707b1353a209296680f6ca133628ca9a8f3a4e68635_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicloud-integrations-rhel9@sha256:deaa3ab63b6df8c3f85c1ea7e5a05ad4a357cb6208fd01de07eed87d82910ad1_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:120fa8408533a46ea0ecf0a9f71f1d7a3733f010cbd6485a37f0d24f01ea93db_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:3e85c27e04a8758c17200f849c07b15d7890412d0d76a312c20d1f60bc97d710_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:d6fed424032d01a121f7e894000effd40c28a391c331d348a01fe56236af8000_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-observability-rhel9-operator@sha256:fb570205b99621c56420fa28769abc6a7b537da8e068fe10aabdce185df089e5_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:32b1ef935551e4511d5b7ad486f2d7ec1ddf066381ccd4565ff6898a34d13d73_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:7e21455a39f0d276e9c2642a38aeed9b1316890821f34e134cbae2e26a23f145_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:93bbb64c988bd9f6952eb501d07650791c8dfa7f4b67e598c961bda006652d53_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-application-rhel9@sha256:acfd4928bd386fc0506b885f89ffc249f2a982a1233c2754b2c8a096336cc358_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:8c3c3fc5fbe304eb2086652fdc746e404147bd3f80ae789631698cc12e576452_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:a248335d44fd30673b6f7230ea8c917d3619592e2388a758973f7671f36ae44f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:b2bd0bdb68bc2569361026f2dcf8f99aace596519b78527c7b349a39f23e1509_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-channel-rhel9@sha256:cfca9ba3af3c87c19fbca8bb25e4a9ca96b002f3f465587b3a80b7cdfa9b383d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:1b9e7f0abbabfa8fec0f2ed5af2a58143e7d2f61ebf932bc50a7d8e71fb7e508_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:5316da34b884e629df6e8b9534398e876e5e943a44d6ca8944fd4e8970d9dfe6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:dd7dbfadff345807862dbf1dd4d0e7eb45fcf11a8bd9c03e3762c7c4d25c1e56_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel9@sha256:e202c28a1a4ec549984502ba5b7860805ac70ea8d56e06c7c72e24e3b9aadfc4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:0a372671653a4d0e79b4f6e7847350f939c469d743d18018893d7a843770bfff_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:45dfbea990a471762f7ebb6430e429368dd90290960908a21537d395acd441b9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:6fb43dc50aa7d3682a42a8a2971a33fbb6bf6d936b105de0de0dddc4c7e1806a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multicluster-role-assignment-rhel9@sha256:d697ee4e9c6eac0b1eb0607034ad9bee25fbadb34995dcc636fb38360684cc23_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:269eb0d27265dfe66de45312f4d02c889a4c3e7eb92bbb96a111e6f22529b9a5_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:4cdcc50c9e532f75ad71ec442ef46aa8aff1359d1507fc1ca5e5b5eed1448256_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:8ba2a0c728c568aa1b3d21c145ee6adc62a28ae561268516a795c0f724dab6be_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/multiclusterhub-rhel9@sha256:cbbea9fc1f562cd43f325b09b4dcac035b306501374ab65a2337280a4def574c_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:3a512182dd82e9e4ce9c078a258a36a922b90a664ac965c1b08df199b1209b5c_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:559ede6018e0f26d67ec69281b1bd4cbcb64c668abafeebad7d8d997145d3cd8_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:96685a78638d5da54b312cc6db4419a1a72f9a86ca8885e82249459e2810b0e4_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/node-exporter-rhel9@sha256:aed81fd60f6ca6bffb6595ba90d079035daa5be1520139d6cc862e96d08197aa_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:3cb3c96d632b94279ab863a9478f90bc1ec09969bc6cecc8391dd06fed1e6d46_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:468a2cd2ed2e3ede3b5f2a8bf52e957fd30d98bfe49ca28da1235e2dd82bd683_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:8c74de52fa8dc5df3b1da4fbbbfc81ed0aa4a23bf25c530fadc12bda8a5c99fb_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9-operator@sha256:ea6f45936a721c767e7147bd1b1cdfac0a94020e74fce9157302a4a59705573d_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:007e988619959179ec58cc9de4b60a123af7fdaf4f2b286331d784c077c9536d_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:bb5664bce68435587ddb36df39e3ebf34eef5d1e26655177c460c6e3e14ff675_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:def849ecba11c871d96f462e262f914e650b529950c656a986006d2d93bbe891_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/observatorium-rhel9@sha256:e7e705d94512bad969b1fbc9afc3a701dc2c0916868c1501a551031f7f073554_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:0c3d1a079da69672987de07906a7405e9fadc915785ffae7c6a8fbfd5d8d1af3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:3ecec641a2b75a7c5e548d85a629eef5685b93349b48145cc4dc335c624e30aa_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:b79ab047f162e8a7041caeb849c8789f19657c04e3b77cbbe6658ece6aef8a55_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-alertmanager-rhel9@sha256:f6746c3c7edf448ce4f49003691f4950705d25e9acd059bf8da80c41b3007ba9_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2cf1ab0fdec3c069d6ff98e88c089c7bfd01a6356ac605499d61736836dc049e_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:2f1e78da3bb51959268ac77ede67eedf9951124c56c69e71f5d93110ca90cfa3_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:743eefe01b4126ff26a0fa0236fe0f9a55f8490ca026fb9f58e9fcce0f26ce5f_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/prometheus-rhel9@sha256:f03e66d0618d8829664808a73f56f7c2de6500d43c82d1df64f02c8b9f38fa41_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:4f22061ce47a6035f81e5fa79a5cadb1ea8becf369acf976d9e885e16f4462ea_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:66f5defc73415df650144cf4e97e7edce96f3879a0016db7def8166ef06e197b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:94c3490e1cb95e520334202f5393ef2b7ad1404da4246418ae568705f48b9e41_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/rbac-query-proxy-rhel9@sha256:e2d945f906ad1ce42b0f20dea46176c764110420d44de4ae342a0619ec7e766a_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:03bc6f335b8667018e03b31bd1f02ef469507a2ed27d0a32007be1a6d27d8945_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:1edd05673358b6da1d9e800c5468d4c85a35763f891302352a9addf6bfc7bced_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:a6340ecf9b67ef0c7213d558eeb730cdf5e4c45b1a375a322fecde46dbc29b2f_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/search-collector-rhel9@sha256:d048f8744822be73a1084f19cc423430a07e2d5e9b43c13cc68a61311cad29eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:02841a5bbedb299436102db98890439e8deb2f4a68310b488aa5883fa912d1f0_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:3ef3d1025c19a2f1dd9abb0310ffeb0fe3e326e257a2fd1c60891dae950b29fb_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:476b0264760267f7892ca8102a789c9f2eb850de9d03e2916c832d4fb4ada6ec_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/submariner-addon-rhel9@sha256:5cc9eeb299c695adc6b7d5fe18950cff5e115947e2dce1416102f85a25269d93_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:7b62f8868a2d2d33333b2cc038d2d6e22871187f3fab3fd115a946c8e266f1a9_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:ab50eee3cbed9ec22162f0e583383874a0d70979ed6b0cf3a43347d6285429eb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:e74984928d9572b072e62446aac84df92c578bf03b7ce8294fb4b39efdb4906b_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-receive-controller-rhel9@sha256:f13896a175270b261f93e15d63d8e35b99e3f16cb5e8ce9dfe3b4e3d5c074bb3_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:7b6d2e29a328a413e08245ed79c14a04ab562212723694b2903ccc118f1ae7b6_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:b7982dea4f2dbcc52d0d76c4a31782440b1686531c228a674ff86e7d98ebce94_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:c3d399bc1a13bca6e1bc74cb569065bc699f68f6d784ab7a1ae7c44c3b258580_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/thanos-rhel9@sha256:e39d5772c08c2fcc138f1b5931f7f8ec98674ee8883693181152e3d4964054cd_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Remote Code Execution via Prototype Pollution escalation"
}
]
}
RHSA-2026:13791
Vulnerability from csaf_redhat - Published: 2026-05-05 15:33 - Updated: 2026-06-29 01:45The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x | — |
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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64 | — |
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_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: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_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: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x | — |
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: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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": "Updated images are now available for Red Hat Advanced Cluster Security\n(RHACS), which typically include new features, bug fixes, and/or\nsecurity patches.",
"title": "Topic"
},
{
"category": "general",
"text": "See the release notes (link in the references section) for a\ndescription of the fixes and enhancements in this particular release.",
"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:13791",
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"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-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"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-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"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-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.9/html-single/release_notes/index#about-this-release-496_release-notes-49",
"url": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.9/html-single/release_notes/index#about-this-release-496_release-notes-49"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_13791.json"
}
],
"title": "Red Hat Security Advisory: RHACS 4.9.6 security and bug fix update",
"tracking": {
"current_release_date": "2026-06-29T01:45:55+00:00",
"generator": {
"date": "2026-06-29T01:45:55+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:13791",
"initial_release_date": "2026-05-05T15:33:29+00:00",
"revision_history": [
{
"date": "2026-05-05T15:33:29+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-26T19:09:33+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T01:45:55+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product": {
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:advanced_cluster_security:4.9::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Security for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776420414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Ad76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-operator-bundle@sha256%3A8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Ab008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Acf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Aab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Abab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Ae188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776420414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Abed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Aeb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Aaf7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Ac91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776420414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Ab13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Ad9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ac78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776420414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Afb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Acca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Ade2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Afb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777986630"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.9"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_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-05-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
}
],
"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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_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-05-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_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-05-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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-05-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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-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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x"
]
}
],
"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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x"
]
},
"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-05-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x"
]
}
],
"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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x"
]
},
"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-05-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_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-05-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_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 Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-05T15:33:29+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13791"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:053ed22d937f9eb84e634c015d41bb2078a7045caaecca91ff92d6cc762a2f31_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:39d0e4f3d7161d55db772e78503e8f17384eb7269e263b220e904e4555d7223c_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:70343ad0d6352ad4e6e8a04bfc76dba5656cf0f840e8651e4bf831653bad8f2a_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:bab3d4d0ad795bb8b5e07f1473bc460d6911322f2ba43d929fcb716d563a8c67_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3081e1b11a6ab181f20300c2c4617babff90b4fa061dba89f24e5f3c71b94c29_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:3277909d639b8e9cdd222cf875f3c8d9930f82111287e792a1acfc753db3af7c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:668db20b1ddb96e9cdd887d2ad623808d80ebaca3086b0b15c30c239452ad60d_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:e188ed2d598f739ff4c015dcaac60df89a1c2df50ae06e3389c1cbabc6464e62_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:21abe57c756f824d9daa24bb897878bcde142430d8b780d815e55334e9566023_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:87698d1f001a1c754e8617b8618d6ef6e75078fc93e579a7323b8ea5037893dc_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b13ee7fb1b662bc1bafecb8a80cbf09caa0c4e258c8c66030b4ac75689a2493b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fb4ef587618f9dde307df362b098de3e42c26373eb8d83bb344ea1847e467fd4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8f2b6efc9e8be5db2e175daef5d0f95ab2bd585dc20df56d844366946dd60057_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:0f772de52e7f61abe0e18c4144bbaf2f0d288708929f0d1462934667fca86677_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:45d29cff5bcd8969fdc83dc6cf61eb8c9c7f8f7ef74604abcf2fe481a84ccb31_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d76922eb53bc1c337cb0452a84b76aafc8b92f404ddb1ae2d6a0b45416faf4e9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9cce1e78fe7dbede26dfd8e4249aaa2b12e6f276161eb1ec4f3e660b9b66f1b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3a6108facf8ba76db9ebf5cdc468a6edc5c305b92c25f0013c64b8b9f7a90a30_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:b008563e865b25be2ea41f151d0262c2ab37849ed46a558d8a4f7be0c901a76c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:bed0a72efbf5407e4b4b496aeb9f6cdc6abd9c44f9b7dccf0b297788c9b9973b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cca311b28042c97639528fe096b32a3bf88e6aab1dde5884c6cd632b084a33d8_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2f6cd5e1c78d96e679f928356e357f2a396c08252b3552dd8a20780f49332cc2_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4d996dc985d8888cc38d9b45f9e37e6c912f06f7fd10c21f3997c530ec73967a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:c78e7bdc6e9d89d36915a3f1da96a97cbf12709ab3be4ef83dcaa6d5c557b518_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:eb611e2c05cb3d497cd9c40cbee965b1fa48eb32553aaa5bbffd55354be7a8e7_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:4e5925a32d137520a161f28caba27e9bcaec0a7d34b098e4862ccbf987e38456_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:52b0908701e6671c167f1988313f367790ee4042a72b7cfc4d22b77b2805f34d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:658740855eb57464629df0632fa1ba65f3788b1297c079d83e4c5c3dfeaa5196_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:9a9495c3e2812d7cb45e1731ab72f22170a30286948d49260b8e2468d4d25079_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:093c816ee564a4192c965d723977060cc17ad9f88060c093c183c3e22860ac2d_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:6d669f53e340da8ce6eabee5c091171cb08aa708a4b2dade9a0326758d94a8d9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:9d3b2f8d659bdb3ae4089e415b688fca4fd3ed36b91343e1cd80438f58849358_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cf766b161e4d6adb21ad0b207351ab6184fe86087b1e7867e53e8cf240449cc7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:6b9fa23a848d1972499d9eea7f6e9f373e4719b1358301c307a687107ecdc63a_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:84e071142ffc1ddbe3e2378a734f62847a77ab821bbdf4f25d27c91dc93f4ec3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:af7b9c031bd6e0f24947aa8cfb312908b8fe3cd5817ab5d803d63951a53bc4e3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:de2cd071787960a9396de207009187e5f2e35305abe2c66b92aa7b8d6eb53fbc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4bb114727a3d8f2a7f6cac8c557ab850763543329d41dbf47d14d8cfc719fe03_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:929e1d254ecccf8c0e629830ba9d8d91857134e3b14e9f521107c27fb6864440_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c91944bbd11a239f893044652d729bb45f79b0836710bb113ed8341aef3dc9b5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:fb8a89fc33dbb2f342ee9d90141bf99fc0a9dadeacacd5c46617f43e972315a1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:470d6d87a4fe354c3d15f97de02898e47035eb36502530ba1e5521f92a3aacb1_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:51384fc6b7b9356f090931954781a62732b92ea364f2605b4bf8fa304cf32468_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:979426f23b6805ec1d7c889ebc0a0519914700995c2d5aa946467ccf8ca7f686_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ab26ef920a5a06558e891bdbf6258bd01d371d06f955234b77538c654db336b7_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:13829
Vulnerability from csaf_redhat - Published: 2026-05-05 16:27 - Updated: 2026-06-29 01:45A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
Workaround
|
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
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: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
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: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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": "Updated images are now available for Red Hat Advanced Cluster Security\n(RHACS), which typically include new features, bug fixes, and/or\nsecurity patches.",
"title": "Topic"
},
{
"category": "general",
"text": "See the release notes (link in the references section) for a\ndescription of the fixes and enhancements in this particular release.",
"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:13829",
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"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-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"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-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"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-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-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.10/html-single/release_notes/index#about-this-release-4102_release-notes-410",
"url": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.10/html-single/release_notes/index#about-this-release-4102_release-notes-410"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_13829.json"
}
],
"title": "Red Hat Security Advisory: RHACS 4.10.2 security and bug fix update",
"tracking": {
"current_release_date": "2026-06-29T01:45:55+00:00",
"generator": {
"date": "2026-06-29T01:45:55+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:13829",
"initial_release_date": "2026-05-05T16:27:09+00:00",
"revision_history": [
{
"date": "2026-05-05T16:27:09+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-26T19:09:33+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T01:45:55+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product": {
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:advanced_cluster_security:4.10::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Security for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Ab590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776418912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-fact-rhel8@sha256%3Ad0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1774592539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-operator-bundle@sha256%3A630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Af3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Aafb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776418912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-fact-rhel8@sha256%3A5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1774592539"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Ac05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Ad825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Af6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Ab15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Ac4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776418912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Aa6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Aa349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Af0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Abbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Abf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Ae39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776418912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Ae976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Acbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Abba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777976489"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.10",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.10"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-13465",
"cwe": {
"id": "CWE-1321",
"name": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)"
},
"discovery_date": "2026-01-21T20:01:28.774829+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431740"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: prototype pollution in _.unset and _.omit functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is only exploitable by applications using the _.unset and _.omit functions on an object and allowing user input to determine the path of the property to be removed. This issue only allows the deletion of properties but does not allow overwriting their behavior, limiting the impact to a denial of service. Due to this reason, this vulnerability has been rated with an important severity.\n\nIn Grafana, JavaScript code runs only in the browser, while the server side is all Golang. Therefore, the worst-case scenario is a loss of functionality in the client application inside the browser. To reflect this, the CVSS availability metric and the severity of the Grafana and the Grafana-PCP component have been updated to low and moderate, respectively.\n\nThe lodash dependency is bundled and used by the pcs-web-ui component of the PCS package. In Red Hat Enterprise Linux 8.10, the pcs-web-ui component is no longer included in the PCS package. As a result, RHEL 8.10 does not ship the vulnerable lodash component within PCS and is therefore not-affected by this CVE.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: prototype pollution in _.unset and _.omit functions"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
}
],
"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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-32280",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-08T02:01:19.572351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
}
],
"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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
},
"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-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_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-05-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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-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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
}
],
"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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
},
"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-05-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
}
],
"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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le"
]
},
"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-05-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"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": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_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 Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-05T16:27:09+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:13829"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0e9d09264cd997aa0892edb46790a62744ffd25faa67489ab7b40bcfc4453e1d_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3bb0a8beb48d1802c9426b18c7409795d5429efa552871e6363520f65a6e7af7_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:3cede3e34faeef30c9dd5106656376de7a87f8ec33bba81448d4a8aaada0ef9d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:e39d69d2ab74d6354311cdad71d09e5b0231ef65952c2e3377cc276a27ffb0bc_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:069423d3de3d5df248ad0aa8b46e4dd7cc95c49832c24ee498b66d90ff25c669_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4aa6e788e733aad935d2ab5340970c7659f38151390164751b7a7ba63e67d6f4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:72da74712eea56966d0a6603ccab29d4f7126385f7ba2fee9cf6029e7a9b7aed_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b590cb7beab1efc8a398ec9c75b95edc3f4d11c5e2aad0e7a34538e4ce9eba2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:5f9f831f8b404a02bcd40e60657733da850622f66fe839ada2c0a562849a0691_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-fact-rhel8@sha256:d0cc4c285fcb407efd340bab303d896623e2011024f9acc94d3fd6c376ce6c41_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:3ec5eba1d09940a2f89969c5bb1193261d39995fe874959a04c349990f75b67b_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:9b23abe7038c1f6afbe5db62b4792742049e0c760626714c1e413f432ea088a0_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a6a1b4bd5919a782fb54444e6fc2324d0f55f020dda4f526e8aa71ab0b3270e3_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c05d698bd98fafcf4a39b130b6a50317189f73049b334ef5e9cc418eb4216b4b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:630856aa5a1df361ff2b32ca7a9d14e18fc16d850fa543e89126e42cba30a66f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:497a6b8682230c5cde13692bb83ac9fd8fbafe572978b1e8cc5ca7397ef8aa11_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9fa92a622af3b35567dbcfbac11b6315f7f5f5de8e0522f38cce55d9afd7f714_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:a349dd8572f13de75361a08b985662c3b3a53e35b1616fc467647d85c55a20c2_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d825f1ff2729f8916c716a02319f9f5a7d4dea27f6b5858b62fba5788ed1dee6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0025d85b9d60fb1a760e671bf479791b8f254eac53f08562011e90370b80f323_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0130fff9bcf77e05cedc4bb298573162c8049646186a2795b44b845ffef8ab88_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e976e1482010b346f61d7b7a8692642a8e53c16e57497d884b7ec752f74ab240_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:f3d4948d8abac272088ba816e78b65bdeb922e7e1d6f460ce0ba087012e4a8fe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:0c66ac59da30743dfe451f193f2cada18f72152692fb99f366401daa005c9663_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:10464a3fc0914c665836310910bec7a3790d8ee5da67ddcfefb317d808ac0474_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:2ca5c751d6e6eddd96f7aedb39b703b27d6fc5569a21a1d12e90d28a2f746617_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:567a5f73f5804158864df7adaea9f8f50fcbd4d9a95ba79089a3293725f92fb5_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:3b42fd34212bb664600284f0fab22998ebcf313ddbf8f4470965af2ba956d3f7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:639dbc77b511cc582ca5d2f9445923c63061b03cb71adf6507854efd551e3f18_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b15a0e8d4eec0a9a8a3af7b76146fa06d925af82311f861accd47d447aab0edf_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f0baa04038d9236efa5e53185cad344aa634368da89d63b2aa19a07d9d80da8b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:2dce1a5e73a0a19c76b8a28167b7950bdf8a03608001be44aa3c5e169218dbb5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:4a63b86cc13d5e94515ed69953c99b05ea7a7db9a55bd2b698c3c2ae25677d0f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:cbf31cbd7b284b87858c3b06e534fc459e1432b5d54c77ecfc12be96f95048cf_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f6878210e88cd8f9493b12f1be3992adeef90c3a3fb0e55d660320ae78c5b809_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2b296ea278a731198824065c608f026778f80fad7114fa75d15c05028a806dea_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:42da5cdc1d92c78ff40c3c343a3aca97c083f085695ea09b7f886c89cfd752c3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bba7d6973b56a724ca4bc93613e6aa8e93ae1ab7248ef7843b3cce3a417c3c3a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:bbeb594273a1d70be3558a78b7b7a657e4ef9915f40ee68483e493d91fe0d1f8_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:05d11cc52d17cc363d9f270fa169535b389c96a21f0c49d9b396fbffe315edb0_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:076f0d5977fca18148be1740fa7cfe9dd78e41b828f8be82807aad99b3bf902b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:afb2ab18bc9a41cb59c015803a16a994ef43630f2166c50a6baf917e89f96abb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:bf0fa33b8a11a150e6dd64abb15df48d07f19dd81190edd0624d99ad9fe5ca99_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:28eff2a215687431483d5d586a66998f2a8b3606d711d4e15c0cbb6360818a5d_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:5b4832b3136b29a4ea5ee88bb944c935785cbca9775f872058a6c747ca679d9c_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8fb61967515f31dde423f6de5ed4f72e3554abbc2ed0a463b69a7fc887511aef_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.10:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c4d326e98ea286cc240d21fdf9bbe245bdb0035d023c5b017efc4c31ddc55fcf_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:14775
Vulnerability from csaf_redhat - Published: 2026-05-13 13:07 - Updated: 2026-06-28 22:55A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.15.64 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.15.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.15.64. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:14774\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.15 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:14775",
"url": "https://access.redhat.com/errata/RHSA-2026:14775"
},
{
"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_14775.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.15.64 security and extras update",
"tracking": {
"current_release_date": "2026-06-28T22:55:08+00:00",
"generator": {
"date": "2026-06-28T22:55:08+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:14775",
"initial_release_date": "2026-05-13T13:07:08+00:00",
"revision_history": [
{
"date": "2026-05-13T13:07:08+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-13T13:07:43+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:08+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.15",
"product": {
"name": "Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.15::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777518810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Aaab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ad06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ae9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ac01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Adc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3A6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3Ab12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777518231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997832"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776953941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3Acf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3Aaef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ad3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3Ad441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3Ab0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3Aba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474343"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777476622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777478283"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Ac59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Ab41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777518810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3Accd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Adb351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3Aee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3A8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3A9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Afc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777518231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997832"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Abaf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776953941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3Ad8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3Ac937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ad9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3Acd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3A6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3A2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Ad81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Af0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474343"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777476622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777478283"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Ab6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Ab139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777518810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Ab747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474347"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ad75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Aa84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474342"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Adfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Acea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Abba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ab3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777518231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997832"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3Ac51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776953941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3A0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Ab1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3A740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3A9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Aab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3Af0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Ab372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Aff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474343"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777476622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Ae2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Afc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777478283"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474356"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777518810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ac9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Af22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035760"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3Aab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474486"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Ab95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778035215"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Ae869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Acdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Ac657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Addbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777518231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3Ad85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997832"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776953941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993245"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3Ad88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3A73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777994648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3A90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Ac71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777474250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Aa7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777478283"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_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-05-13T13:07:08+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:14775"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:2e92bc3a93834a5a2f8c4105e9a85092d2d62a43372446ae32664981e6418e96_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:5949180eb6b3eeeefcc1867a4327e4bf33e0da58f2cddca7473e64ed32fe5d80_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:baf01464f82738b2136246766cec84873c616abaa1bcc1cf277c9c1eb6b5a098_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ff63c932ed1b193132e9496820d3b6ad469a81f9479c698666fb2c3bf14c6752_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:579e5b4a5b037a6d41e57c0bdd6ac8a00c768456c850fbd9c8007adad9500f81_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9bb4a0883febeb4fc364d151d0c698bd33143cfc86da84782a68cad3aab4ab76_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d06946df9ff9d46bc81ced4be0b3ab0ba9ecbfc33d0ccc7d66dcabc541877968_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d75d7412c513795e89c52bab5c67c261fd9d666e429e22692a2bcbe45b3d72b2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:39c74de4408b0c0ad5f3fc79869d2b981c768ddfcd5f286b83b8c21dd8a17754_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a3e7802b06bd038d59d7199551d5e8022447faf99b3b492838c8d165cc2b0cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:51831cdc6ef63fda135cd70c4bc62c156a0b7ca74ef1362fb185d1724561aa6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:aab9c8ef47d1e7fd1aa22add79a054d2a346447696d1e06a4863718ea2b727c6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:04011b9eea7e7988b749d665621fe501736194983cf3facbc18c9a73f3c330ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1c47d5c709920c8b6244653b5fbdd0599361736b433b0560bef3c3688c3e2851_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:c657d513655a23fdfa62b43ea6768ce771e976739253e3d5be57747fa90c280b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:dc8c92fbd78f110a5fdd544001993967053f119cbd2256a64a5396b20f630a79_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:11afd173704d838825ff151117d2e85048e8a2856e2a87c21709f3ec960f0e8f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8c85fcb5287624eef169bede14a31b89cbeb2ec25587817fedb0b5205276c5c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:99e1a652d2d18b51cb02d5d81bbb12a1e8328b7d617146b50d37baabdd6e1a99_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b1be9ba6af51d85b040041f13c509139720292f14a4ef55a7f8afd9a2c509558_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:74a51ca2fa5e9c57b3e0ae0168c27ef1960b10815a2259f016b28a31163eb745_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:9125aaa715545b7b06b6bddfb5950351c152fed3b898e5eeb0b2800aae1a6195_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d3a1439e156a7a9c27a6671d9b3ffcd8e452ce557a5fe62a434cb79e3b8eb780_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:d9178d1b74a01a795033c9b27c4968fdbaa3fb68308e7785194e71e90ab69a59_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:30959a0b6e29bde29ff879254360319f7faa88ebca5065aad5a530d587938697_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:9446713fc061e233bfd83d7df83a3dc4021e55f3f754496946a20f8db9ed6038_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ab97bb213c9039e268509f770178bf7d6d1671bb5d4d4baaf11fd41997cdebdd_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:ccd8eced21e470b77b70fdccc3bdf8aef1c65e62dffc9339efa3423404eb52a7_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:297219d164f3c8020cf557c7bd079f8128d537b83985c43407514a7c91d4c557_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:8f8b3f0fce925da9f904105003ef95b1e98814c27d20e28c769133d336e93c4b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b95617aa967a51171166cc499fcb59c942ab444533eb2cdac0a24dac75f372cc_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:bba4a12022c6c3d1950be8ec0f2cd8900fa146bd4e8d890e368da33d5e19fcc2_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:6ca961cec09530561930532fc0d0c862c73f6a0d004bd40387387ac3a8e589bb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:8ca5dbad74e620131592b1103e7b7a81d788d746514a77caf06032b355919532_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:9ffce0b739a6b8cfe1ab5331791c7b03ed0c62ade7284845cb6fc3772e7044e6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:b12df8c80c181c63568a20289b23efc87fed4775975f8d8c44a82d0b94d852b6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:503493ec18e19701c35e5b3e4478ce514ec64567d081dd0a5c73bdd9f74bc0a7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b3b04515ca5278b2170d379964be00ad06683d9bf480a76833119e54793f2160_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ddbb97e2f009676356639e3d6658d49fb3e8e9524eae40947c4ce93fc7e58386_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:fc001b64d95e61352c0b408cd4666a3c05c681be847bd400d931c5af4fa6d8b8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:55545a073e96bf80047fcbeb5361855f7e682bc9b5f07e828d04e0ca90bcd25d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:b6177d70d9b26b7806b44a7febc844bb7eed1440ada2e522209676e40f574ce8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:c59362d7fe7ea7999f5a1865f009254c89d11b57125eb2a584bce33b4761de1c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:26e963b289eb9efec53e29a268abc42aabc05756e1d87c948b0d5d80c12aa268_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:32fb0b26f0765527562b3f08741547fbf9d6118e12e5775e767e811dfb283507_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:69ce50044a38b8f408bd7e6f038901e6d9ff4c4b2eb0db7167e771049a2543fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ee09981e6e843c78f4ccc82d82b36f48ae2efa6bd55c0707fdb0cbf938093df0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2ac8fee8dfdbba968050168727ecfd3a87980a2da13b67868e9644aef1f6f146_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:2f7f3d8b9376824f28d9e0a8e9476951f7707641012462a8d7233157ead27f74_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:45961468c463c6584d132aa571779df54878c1bc0a92e53f0a350b610a5fa95c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:64f8823c27ac10960fccc7b3f22f99a9d1cf03a7528350172da32a42a69125cf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:2504b468b7653206be721866a575dee8c3f7f766fcd6e81e29f49c59f3d0f985_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5072adac2079506c2af06d4c8a3eaf4a8ecf871d8a769e70fe3b9abcf7204b07_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:78c4e322e66d4022607299fc9d147ed62fc8480c5d0bea82f16adcf1ef2b70f2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7fcde4dbc7cf15e1f3efdb5a0604fd469a13b13199621e55455b2de075119846_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:420644cf220e1d950e63bb2e199f6ecad26e2b527b198aef8674128c653c1324_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:51d2bc4b6c0ce6c171c769206849353c68bbb9dd2b6fc101a6ad70af6281a775_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b139a97bd12890f03e7b0040e54e525bcaf54b4fc76e64c4a4df1ca1fb300b83_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b41fe1004f75aa5b4b0360924a9f3a0d2994cb9f452c63cd4f884f12bf124f3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:2b5907c27de7079768f20ff60bc68544f201923c582cb3354b345e68a03787de_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:6c3605543dacd227ee1db6edb486707bce9680b12f02cb3ae171aa0b96a6bd62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:81554a724e03a9239ec208569141ef91fab0bd2b04a10d7713dfcf44a52ca678_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d85bf8ca3cc6009ee5992a76cfc715740d0fe4414d390f60ad2c7a167f110dac_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:3d1bfa758b61ff424e95a662b96ceb88f1b9601c10c4c8fff7c183b75fbfc597_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:47065087b4f1a8dfae1dd426a26e44a505dafbfa1e4cf8741dbd5bfedc2d23da_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5a2abd8449e3b7714ac1c55ed1f6cf05a7bdd2335c5b01fc6030d18168328369_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:5e4915d3f630445980adc750077e883c48459255360a6c41b1e99751c5a1dfe1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:0d06f8f1a9eef31a8ec8770c43e1d4976fb2e41f1d45ea727923a3465ee46f1f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:6c1774180548c63d44c146550568f1db485d0409aa06ad84e89531655ed0031d_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:775cc62352ff2095c47a7d32b777417cb855cc9515672a3a3127290562fc60e7_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:c51b5912a500b196bd2443aa297bf87c87ae2bcca21821645fe05f65edc7d4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:0255762102764ef0fbb7daac8e33819c17c7af0d69857926f8eadccfdae45100_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:329df0ffb9bca5db33601ff5f1c1c5c0f13db87c897707cad88b5c9970e8e42c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:42c61bd8cf13763f96823ea8871d8c0a35f8e8c64169b2c525516bfd15d25701_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:57cccff3c78686b5fff6cc48795b11018d3bb75fa504fb30b30bb90c9b41003c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:3125208ed6dead69fa4135f3006500418fd4534434353154568be8be7a042355_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aef3308f6b91e281a3a885f6063ff78e638e44c012bb276200d578aae58af3e4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c937a29a88c48e2d6b8f9a95c33b1772fd7b8fb1cd44068619d548c5b62fca5b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:0fa0604b955c94459d20acd1720aa4df9ff7fccf0bbd8456ba56c737d0aa074f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:cf81a11fd4b9f0aa7dd9f80833a675a4725516a7ce37c5c003ba2901765fe995_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:d8e5e61e5afdbb9f550fb0a068b57948947151fc61369efc9a950d35cc0637dd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:12086e1ac81e8ed97f0a64871fcbeffe9b3a0543746ef502095852f387517123_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:31c03c802c9e86d10ffe01705ec27e7da27deb380dd31f1b5a6b6ff1ea224dfa_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:5333a33cee251155087295d6b18acbb345d121bbe3cead17e17f15bea316623e_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:6e52ccde0b77044ef4d0440e59f3b6c75871616a8faccca840f0a9385bdfca1d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:0889ca56e0d4454b7b23b7e1d33075aae31daeb5e4bcfa4ed3a14a75d69faeef_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:4df0d98b740416c1018b8cd36828a7a7128ba9bb124f449055a5dd4dfc1d677c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:7b5508563e5708b254df341fb26db92987f21b54ff26a0ef95f4a095c7f8dbc3_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:cdc1fe953bc2f648f4b7359456de8380e090faa796b6bc70a97ae82f6f0c0ba6_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:26cb5aacd676e3cb83f0b2d5581b882f9d67a666330a0b539de9e151c1bab061_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c9d93bc9c1d85ab6b40cbc9b92e17955e21ab2ba51924dd272d17875d72eb289_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:dfe2b5a3a7d5cdf79a434180052ba216f9839ad44932ce04095405139260d5e3_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:e9387eb8219ee1dff5017e36bb6e17b34b914612d28b635716e122a56b71b267_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:1ccdd513d62ac14f499c79ebbbc98d937a133c006e09a850ea5e34e1c74f7623_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:59a5cbfa712261bc76958bbfffd7eb5433b2871b36ed9e2ebecdaadcb63fca2a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:84df7174d07dd9c0f65e662fdb772dddbb94ccb2a2ca82a6cc0522b2218c6518_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:f22b25b94489c56756de3702d649d9835733adeec06414c41800804f387c3c48_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:148476905d5a62677fdbfb80b171ee5587ed6c53581e929ca44a00a5f16b76b2_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:1cc137f0b07e4f4221da18bc20810273cae2e7e2360700646c8c10e2d2e8d533_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2b88fc174ae7a7f96b9b49a155ba895c8031d2391ad78577fad0299b63f117a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:c01521752f051079fbfe4d0c65a640bd0e2beaba8c4232007695652622869223_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:0cd5bacc8a059792e25927ef213728735c33008ead6d93766673c40547dcd570_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:200af42875df585b7b2db85981fc6bda992394dc3c8a5113d264e00cecceb040_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:cea0a10ee567fb47189e4f7066d2a432757b87d10b15d0263802496029b5727d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:db351979f1b308fa916fa83ef12a15574792dcfcaf14bab81684c5b23613bbf1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:569df27e1e267322f4f2de98b3f7b482071ef42dcafc6f2c5586a52d3ccddade_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:6675f77c39b0dd0bdb8266a67962515040b8265a36c8848d0c882e20b61fcd2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:98ddacac8c30bd70aa2fa55a9351b2986ecd66267cd7e3ba1a98c9f0d20a7053_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:e869dce62961cc53926ea4a6cf0983aca72b0f6184f502cfe87192c13d4a1dd9_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:012619064476235905279fd7dd855ad16e3f762ee09ef19a101fa949bf75cd1e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:188b0c74026073c1982ac4e470d8cdf61c5f18e418fe39c644099e2f84699817_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:ab6c3ced09f27114808022bef1b6196e88d343d815f539b1f60757712f6f03bd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:4bfbba8b1194d7d0a450789c137f8494825599cb6571046b62ea365c2f0ded37_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:7d524112d78b9898e1a742ca58fdefdc3afd38cdfaae93bbedd935e68c86515b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:a84d232dfd0ae2f9378009ee04195b0b3ddae0c448c5a13c6a06b43f9cad9f26_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6109b57e07f666134a27d6ac7c7c1b328154d6fc2e00dffc8785c9805537fbe6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:73b8283e8d91b311e38aaaa5f99bfec9ff0441b757596179a87b9ea185ba7948_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:740c024bd5bca96ceb108a0268088280ae13414b7a31d309753c4b54438ff3de_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:d441dfde377d3b695be1aee5cbc5092505deb8ffbb3718ddc4a87bdcfca3ccd1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:58b754705337728f0da21ad084e450756ecb61565b7381a8e959ee5bda8239c1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:7ff8b247a1dee5ff9f7b65482fcd2b8076b9655edf067c8f25f1be9c2e19b056_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:cd4f7a0fccfe9b3ce1948d12f3708dff3b274b55a0d04e2c9686f345aa2a70f8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:d88b008819695f1af3de4c97f65b350d6096551b5b67b00e6c7fdad3bd40071f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:2bada04661de02b23aab63160d9e687914b61000dff5e3786c57ac39608dcdc9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:90b37e1b4813b389d615306a5737651002241a19363210e0abe4eafbb514716f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:9be2cc40367502f846d80e762404bd3eb1e2195dd096dfb435a0af80173dadce_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:b0f44ef4a4da9305a1c5a8ad6f7f7a88401a7f7b5b0db2b1ccb720a6f118adbd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:289dbb9a5d3f1e5cb24805f0cdb5a3254c9500cbd9555a35dc8f3b5490cb74c1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:b372418279d3bb03a7eb94275bde774aebfcd866efcbc66ade78c89104fd2c0a_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:f0e69827bea966d4bbda2dd550110afc3552ba0b2ceb5c19b0a4cf0fba98d32c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:814878e9d5e06198405bb0a6d35810e67f0084e5bced4a850f0dde96f4ce5c4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:84f8b0370165bbe0d4556fbfdf89d6dc6ebe27b82d1c7fd8a57203227cc4676b_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b747df733aebd6c5e1fad3601fd3f63a439e1ccd37ef0466a5695b0d5cea2812_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:810332f13d49be5ce65eb6e921392d319ca509546e9ae9e2892113a9129f3dc5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:92ac7b9178dae78612dcc0e2be4425ba8d8417e3811f9b150739f6fd62d42000_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:ff1c211c128027b01505e6fe729a103706fda4d824cf10c9f8ad92024477bf78_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:2203b3d33eb5908f8989970788a214469d29588924d48670b5a12f0f43334233_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:3efacfa77e478c27a2aa94f9d5640594e3e687bfb99e9a706c8ed8b931130c3d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:84c6f1397b427959f9944b55c101667a14a3f70094f768ac6ef3d142d043807e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:562e8bd76fe841a4c99598e0f4a0167d7c820cad7be4d4cf2fa75b79e1c690c8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:5bed5e010a4108cdb30fe932aa8f2f9b9e324db2aa0b5ddbb2c2e1fbebfbdd0c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:740f5a8917483864b73b160137b7c0da1a61efa44785790ca1d2891ca261ee17_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:0dd5e9729a49d3d0be5230894430229b2a42c56b11bb44d9eeda0a2f9f9dbe21_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:5f45987e03ee4bb554e5b3d5ec1b808f178de4f011ffd74b367df429d8f975e4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:e2b12d5589e18c01d5c7b794a7ac187ba124d0a2ff75097d31f7d3f2596fe8f4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:0151fd84b71d0411fafccc8026f33a50bac24e030db89e229fb16609e641d3c2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1ad7dcf2331bcc568dcc284b6def74ae2d3976be1eb14d8bd45fc7d0eaacee5c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:1fed4283c254f3c14f0496601eeead8767652772d1ce501f27023d06d35e4ab1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a7a37d3b23f651280e6c7c73450a08c5ed0aa2c99117811ad587a8ab3597b33a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:4656f0b9de27ee15206271808be75f5c38e2cf42ff31041e39e939fc6b50a0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:70a80b70ce786ab1e215c884f36c516ac346888f0fd7b73c19fc024ad66fb714_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:c71086e141220e3f5514f57ea0a94ff5df5785e46f84e8071a4758744feba85e_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:fc122c891c93c8e5b3b2153b630a145e14c9528c13e389caf1e8936ef1e396ef_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2c0dc26fb27929cb2f2f171943857642c4126de3c9c81e014d0da2a44e2d72f6_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ba4fa10caf8a9e716f4610809bef5864ab550eeff2df65362d6e1a4a1be202cb_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:f0daf964c78f6f68d0519dcf6067cc2bc805b0bd5f33e3aaa4afe4795933e059_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:1c8098fdfc4c9c28d472fb63d922f5331df1a4e1d5977295c7ab208f6a5b0e01_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:7e978dd48423c865cee83620a61ee8af01cb869fcd768c3a56a83fcbce994a0c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d81489d43e674e5a24c1f1103d656633012f6e443b9a13ae6210ab1fede8776c_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:15092
Vulnerability from csaf_redhat - Published: 2026-05-12 19:01 - Updated: 2026-06-28 22:55A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_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.14.65 is now available with updates to packages and images that fix several bugs.\n\nThis release includes a security update for Red Hat OpenShift Container Platform 4.14.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.14.65. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:15091\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.14 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:15092",
"url": "https://access.redhat.com/errata/RHSA-2026:15092"
},
{
"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_15092.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.14.65 security and extras update",
"tracking": {
"current_release_date": "2026-06-28T22:55:08+00:00",
"generator": {
"date": "2026-06-28T22:55:08+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:15092",
"initial_release_date": "2026-05-12T19:01:18+00:00",
"revision_history": [
{
"date": "2026-05-12T19:01:18+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-12T19:01:51+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:08+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.14",
"product": {
"name": "Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.14::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3Ab61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3Ab61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3A946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3A5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3Ab6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Ac86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Aabfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Aae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472700"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Affd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777000664"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777002549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3Aa6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778036643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3Ad5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3Adc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3Ad5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aa95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778036566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3A0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3A3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777998002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3Ab060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aa79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776955234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3A703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Ad146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3Aec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3A99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3A64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3Ac531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Abf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3A94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3A35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3A7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3A2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3Ac15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3Ac9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996706"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3Adbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3A4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3Ad995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ac4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472700"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Af12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777000664"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777002549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778036643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3A46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Ab8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3Ab5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3Ae2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3Ab977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Aad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778036566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3Ac4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777998002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3Aac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776955234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3Afeaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3A42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3A4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3Ad08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3Ab5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3A714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3A53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3Ae7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3Ad134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3Ab231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3A183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996706"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-event-proxy-rhel8@sha256%3A698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3Aa2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3A3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3A8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni@sha256%3A0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3Ae98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472700"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777000664"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aa125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777002549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778036643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3Acb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Af7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3Aef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3Ae068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778036566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3A3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3A30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777998002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3Afb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776955234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3A7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aa0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3Af1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3Adf1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-operator@sha256%3Afd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Adbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller@sha256%3Afea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon@sha256%3Ab2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin@sha256%3A07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-operator@sha256%3A430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook@sha256%3A5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3Aea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996706"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-operator@sha256%3A729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8@sha256%3A75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel8-operator@sha256%3A567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ad9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777000664"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Ad4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777002549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778036643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery@sha256%3Abc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3Abd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3Aad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472630"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Af3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1778036566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777998002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ac8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776955234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777472543"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777993951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3A6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3A94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777997870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8@sha256%3A3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777995794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel8-operator@sha256%3Aa58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777996706"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_amd64 as a component of Red Hat OpenShift Container Platform 4.14",
"product_id": "Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.14"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_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.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_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-12T19:01:18+00:00",
"details": "See the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.14/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:15092"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_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.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:0003e6298b68afa698c40bf83f4646862797684b4d0a3cc45ab9413704794336_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:5eefbfac3e08f10ba2de3713c85e3eacc8eaf3ece67cfb02ecec7310623b4e15_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:a79052bd37137b0b83ccfa55af7de66a146707e13277a62530bac2d8ab43fb0a_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/frr-rhel9@sha256:c8caad52fbf57bb81fc3cb60dd71c1ea7ce4f9bd842bd73a178125026883b6e8_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:7fb76ff4720d51ebbff71195794dc4cd5b0133312a70804699cf7da381c06561_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:abfd06589800aa397a101c994075b5a050e5aa853b2964afda6dacdfa95e547e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:c4ccb669b5161578e03fefcf8af3f26586eb2fd1697fcb8f8f4e71181af6fdeb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:d9a03b3d8a93d890c36d2a840fbde762c5cf7f135961196527bc234b4b415cf0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:59bbea700d67739070449f9f1c87c3d2bd269716cae6d8e5fd0d4d464c649352_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:96c083ec84a65a23b2c8f1090b660ed20512e5a197f101ba2a062d288ee416fe_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:c86beb6cd10d2385e29024ee32fa08d7381f92a879ad05166c3218dffd12a01f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:e98e8bbc9b9f173fb753d72a37f9061dfb45d0fce7c5fc47ddc1d7094e5d227c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1347cb745b5dd84f51774f9e33d3d92fb3c8e24c33ac1a5e330085d49e8b5ec3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:467e4d4172cc647e0080000f693b514a6e78c20f0eb589831e8162c890cb7fe1_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:9ed35c24d443a2654de98ab60b29e9e92df2814206aacb66306a3d17baf2d671_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f3c8775044022a26863779fbc888c994637b4781add719cea00a3183b22667fd_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:50b2d90329a5e28ba46375a7d137d6edec33487c4e5939644266c265acff2bb9_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a0b1aa43f2bf59c68b755aa0bd384d28528abd8ee6e88f41a3eb109d43400c25_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:ca21a4f9e89634abdca9d0984b16e4b1ad1aae8f8cda088a7e1b739df6c3e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:d146ad51efd37a85f901f536056a42916c0cfca8435cbcf7684856e5ab84379b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:1c86bb95167a6f9fb1a7ef0499f58df1c90db279e6214643daff64fd92e8dc48_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:26120f09ea26547739ca5fb11193495a930f146e59d7d7e7e2759e81ea177f7d_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:832ecf1b3350150eed05ff03ad524bbb329f7dd5fe4c1e0e51451265268dffe3_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/metallb-rhel9@sha256:9c252c0825af823909b5fc5552abee0407a0dff750a5d8d8118a1812c96a20f0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:3c105c17279efd1d2c367068a61959c07520e3adc1df934b60527e99f549e924_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:445001e63cb7a2f01b308601bf1a28ecf45869ef7fa8f405ef23fbbc2af4695c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:8292c4a55045ae6fc0553a87cf932cbb9bffb2f015aa642883d5fc241e1c6015_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:a6e5efae6cf1c902bc7b26af95740949cf9dc3a4247a47b7574c9b69aa893597_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:1030d7417d2891cd538870715d0ef0c141837b7d69ee3c5fd349bbe703bf0df0_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:30ea836795b4b4a4dbf989910a9dc35afd32ffec7e69935d77eea20f35ef9861_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:b8d822c5b014ce8a7c84e0d69fc1cbea66482b5086cf6ad8625e8b42838e65fc_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ansible-operator@sha256:f7ca65e27a16d9556b9c9234be7c3fcb9faf39c3f52892a08123c1e159cbeb25_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:0cec5c49c61d66f3e94072160e3bf1413e31856e75f0c4a44a4624c12ad4e617_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:3b91b161dafe1d4e8448fce24df852a30c85f99434f01137404477facfc8566c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:30398a878cbd1bcd0e420e877abb9133673d916e038efbdd2858e542d952b1a8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3549bd1fb0007eb089eda05ca6f6c0b478f280accb4f97bc85ebe61d49c76512_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:0b5e796bdaed2fd2b6545829dc99380e8366371de5a80bacdc9920d9d7f59ef3_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:698fad06fb69fbc272736d33c0e7d9bc3d40c3b34963a4071cc7ad025bf92409_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8@sha256:b61a4a64019869689bbda5290d1e874fa6a7d386e8715284908bf312232b6808_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8eb48eb85147ba4f157a893e37691a0db719727c6148acfb619fc68a2334a7dd_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:9e6042da7472e4363c3d538e84fdcdfeb4b2916f38db8dc7fc65829636ad6986_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:b5c45a28ba111b4efee65307b909a330728199d48c15455ad3cb83639b5d6008_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:ef6d6d58016d141d7f62ef26e7f31fcd5e12ec60649e455dec0ee5a2f04cd5a8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:729072e3189615d14f66c694b30bbcd482228cccdc74189913fe192075ba0acf_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:946d864ffaa27f78d7cb4d18e90b29385cbb083ce3e6030e3fd1aed110917939_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:a2166f5ba51aa04a533b448194cbf18c9b4d233ec59784fff9ae0be711de0965_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-cluster-nfd-operator@sha256:dbd8deb6e33f67949011058c12602e2c352f6e42a5d2b9d167bf29d01e4053ce_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:567c668b190dc681e40799831d584ee99c2daeaaa6679b857a3853bd9678101e_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:8276d1a0b4a33b78e7678c593a2124ec424264d39fc3daf85333bf7c35e44233_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b6f711ac6ce1bbc6ead03596b0770a0ca99379012bbf3e5b32b850a90fcac8f9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d995f4ea9bc21ec6d5ea7fff8729c63fa8f840ac1ee01f76d3a848c8c6ede8bb_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:3721f929156e37754c8180a9090c115b9cf5c1ce60e130ade0a15bf810cc7416_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:4af04d4412887b583bf894022032cdcd405f1eeeda0dc7eb79a029eb3d600033_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:5c86009c43b9535d2362ea6abf8aa7a078a33a6a50fe2f6a528d9ea48484cc76_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8@sha256:75aa980067b6e0457253d3c39d1e43866fc2b507992dce63c4edcb6fbb1a5480_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:3f0748fd6bc74b243ba550a8f43c39aae0862355942f7da269f06b54cf85225c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:50796dc723bc5c98c48713cdc23ada4c3eaccd006a808ec61276d0970992479f_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:69b68edfa12ce5964ff7779ce0ec0d1dda03d85f43eb88f66b237ff9e8508961_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4056d0e73d88856b39ff188ef215dddcc78263e763592baff0320340cf0b74e_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4172a5eeedbbc503e4f7af08e112c540d86a925cd4b24c98ac7724fb85c7d533_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:6e69506e8cce4cc8f0a7758b7ce02c106fdab627d2788ca71ed820f54ae6e6dd_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:bd06e717e2c72a94540a52946c6d55bd68a4c9e45622139605583994c2ddb623_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:e2abd4983ffc2c6e14fc9669134d48463ab589136f2ef46b4ca777456a2cb686_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:1e8a4fe755e8284bfaaeb4fe916e60a1d0cc6d947b64fce8bbf269136eaed75d_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:ac00203522303ab8ae3e2a58598828e35c3afb46110c9aed8e3e3795d8f1e0af_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:b060d8418a5ced9dedcb717594dc43b52103e102fc793412614990b813658827_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:fb465211f1cb177a3d632748826b61329cb461e8214dcd886749258b09cb9b21_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:ad650d1dd8ee54f3a794b76fe2c2942aa9757350812ff10836600a844ba5f6ea_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:b977d1c2b24361750584aec7ef885c8dd652427ea100df6a2a1bee807e71e142_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:dc05b2284fcb49a5bc9ce6e87117f3befd1a5679dba0f45a1bd7d2f9a723a74e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-egress-router@sha256:e068fa8ef84c12e2e872bf575966a24df791a78d27eb63bfe19549593988abfc_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:15e533ea94a8a080111c94ece8fd3990ba714620b2fc25673ea0a0cd31f67891_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:5d24dd8f16a9efcc294784fe399028a19dc172cbc527e357aa2abc099c5fb07c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:90aff9117a6109871000f5c87fab05c03ca121ec0fbfcda9f96e9508c400c284_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:703de177f5716ba823983d3260c7a12867c1672baf070eaf18c997df38711799_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:7643af660628b3fa5f8a0380c7fdbe180280d10d2be019417324e1ce7ef9bdd9_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:feaa295bb063124a31c28dc330771c917004a6f42a12aa7ac9d5965066eab216_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:3d5e4c4a7b7a86b226274b115273b97fccd21b581b0972c1c3ff794e45755a1c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:636fbff43881cf5bbfc048ca0149479c404959cf9fd63d30d560d4bc4925769a_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:65f1438f9a9b4bb36a75e180e9dc78daed157c32d6af5496284efb8bdd9e8190_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-helm-operator@sha256:d5d5db2b7fe944dcbaa7f19f51e59c427c5e52aa33c2ea857d00bb714866ff06_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:3a4947d3753db1882907a863e3d54e94837e51779f28e96bbc39039efba5f3aa_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:77e40c2536df39dc13ceef26f795f4ef27d665158f57547a28ca87c8df4d882d_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:a95e9830f6d65a708f3d0adc6d401c86684f54637d0bd7bf0529b5461cb34749_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:ca7540e44120c7809e9e15c41f88560eb20a78b584214caaf1a629d7fadce16c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:19e589172c13af777aae6fa8f894b18d8b3ae47dc92e04867f3c14bb68615cd6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:94c6aa9b8c6849f6226ca98d6cd0e5b66a1a0eec65f4baae265cd194db5af8ba_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:f12ef39825e515312849571f08217f85d4575861d58d94cdbbbd56c3ba96b4fe_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:ffd8902eeee1292efded65e98d0508e5fe90190a4ee57cc0cf7a1c115ab96445_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:26a758c20d400558b83c7fe84ac817eee703a7b13da08285923c57bd2d2c905f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:2fbc4c8285b46268030bc77f7d6f69cfb241bdf2a28be7a5c0b276d88783db51_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a125c94b283bc66c75ae0b167f1f1b6b4c943aae6bc5f86a0a2d4106b30eb844_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:d4a9a687ff785538e295829601c9e58ebc054346baf036274aa98070d0fa643f_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:2de424ed139624240abc48acc4deec05cc155c7da2d1ae35c8230e98114745a5_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3df26946374eb2139b30f367b25b3917cf96356f3588b10145e993f10e0d5da7_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:3f396b7f01711232cbd4f57304808b021ca7c1171dfe83fb4aecc8c640e7ade6_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4f1fe6d724dd75f7695905e42f29fd3184d33477ef2ba4b50c625e0d209b9c2c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:46d75628853c897812a0c717d6492a1ca454030d9373c7c4fe7ff5253f8e95d5_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:bc4f265feece89119d0dd8369a5daeb81929db1f4f4c0cee4ac3af22a5fe29dc_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:cb36b5ad7854c6406bc873a95a367a05a2a4be2683df70aa6eaca99ad3c5b7c3_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-node-feature-discovery@sha256:d5779608a64e4812a24c8448311aa4ee45b11667387594942d809d85feaa33f4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:1da39c93b5fa5a4ec1be6b9deff6a8d64ab09245a3e7dfbf810d4e5d9294dc8c_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:49bd02f082ee033fd7d6a6972741fb201b87d8d69e5c99a736e966727a79f113_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:7a6489dd68a0e795aa57c562be747e28d50fe6486eee936811bfb793a7fb9129_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:ad46df47e2ea1425fedbfc9468191ce55504f17a74fb94e14f1d7ddb5d39ab8d_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:64d0a7fa76b5f43be5bac4dd803d8d3a2adf5bf3828a879a4f4249deff437e7e_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:d08e85aa00a1f893cce7ce6f3ca0fe40d156a129c83ede432b8bf3a677b1bf6a_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-operator@sha256:fd50273650bc5287492b87885bad782d665b61ae1da05b07c38ba41ebaf564be_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:3ecd45ee00b083b423e212652b310f660814d53e5832b950dd9c568075af4a02_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:51124957d4e6eaf7c55914d99f2eecacd080428ba8428491d81416f973752bb8_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:ae39304b2fb2d35d90609e8c10dedbb28a107df159bd52ef33ebeffc20c76547_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:42fe9b0e3673969d9bfe75ae3fb90ff95a566ab337568f9f5b1b9696d1ed9fad_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6a2339f0310239c74350b4dc4f92f1ef65f3ea9ae8281a38ee5f1b9bad8cca63_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:ec5b6e6661df6b5008eb7ed88d427e0da60bd0e7cd96f96f035643db1efbd4e9_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f1944331c300d7b56d3e874314742f239adad5739d6553c5b99f89c052bdad7f_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0a90055e2f95f93f6743bd870773d94a0bb35e8092bfe42700c2d33e679f7bba_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2de3d8e6877bb7ea9d8c991500ae516851ed7264e2d7a107b43620d29ab4335f_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:460be7de2dee60f16cc977caea5cf3d2a26ca6781bc0cde14e3dc2a245a701eb_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9c06e08c17ddf98b0ed66c1dd8244bb9ed36e07ad83cf67b99d8709eb4e450ad_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:4d0e825b252f0b06363adf542c1aa027bd55fc1b97b207b7762593414f4157cd_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:94ed361b7482494489ed3fd177d812a1fcfa5d6adff51a95c2e4ae34e3bd3b07_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:99e9e5cd0153df64412effd9c93c2273a3eb3eaa538ab43d3240d184e99b559c_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:df1b89aeaa6708e6548aca36b9436a3ab553b0aa2881c06a98f5c6b40b2d073b_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:94cb396d4b87c1b84d0e143b32b8844a37e1dfcd2e3787f51de70bc85840f974_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:b5bb15fb103a6f6b4aef30bf31e9d9eee3b6314b2f65a5a3f3cb7ee49e8052d0_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller@sha256:fea731bfb425fcec4da0599a0f67469f57f623aa85cda6fd77cf916f1a4fae87_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0cbde6e575f30392c56691c8e2bb370e53449d33d0d6719815e8b780b2a17f76_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:0ff36c49745aa4d0563682131430f9aa96d6150cb58fa0adb4b2752fa94c3477_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-infiniband-cni@sha256:1fb33dea6c9da93f9a2c903d64d5cd273a669b197b825a563c8794b2e2a440ed_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:35d01702805c4a490cf3fb32ace46916823072120b1bc4b5d1f48795d007a64d_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:714adb78d77c8f529f22b0a3821c867ae8702deba9e49c281e6aea9248818eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-config-daemon@sha256:b2cc8aaf20c1ba232290802265b553b36317318fab93f633a449b421907e82f5_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:07ceb33add8664b2ed5a4135f47d21e6e3a8cb0347dddeb69245540c97f5b15e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:53fff2b7d20ec463404aedca80996a50a91f5ee914820f842e73951a8ebfe2f8_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-device-plugin@sha256:7b621072316941a1580ede77551bfa233baef6eca778e62fc5f50d003daab8e1_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:2adabca907bbed21b638c632954a4e8d54bad15281e43419b5868f646f64e725_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:430b866b67246b3cc3fd07bc5d8c631fecc169bbf56508b49cf7097215014c22_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-operator@sha256:e7f73829e39ce733eb2aae2aff1d778a2b7bd3cff1339e1265e382b9e362d72c_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:5571f472b52cb2761de407702de07b957910617c696fa979900e4271e95fab18_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:c15a2c378d4d2eb0095158f55d43cc424741ad2d5d493d60b547714ddd21c4d4_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-sriov-network-webhook@sha256:d134dacde3abe01ff732f1ff0c7cad52a00a3e29c30b33f27936b70958d45784_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:183ceaa01d95cdb3f02dae235332c2af68ff8499d3a272d11853d8b29f84e021_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:a58c2bb926af852e7339281f74b34dcb911102fc9211191e3208682171dfd88e_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c9a603c43af25371d7abecc708d072cb46a50f38da893370b57736995f0f6370_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:ea0ecab1220014618575e95467c04bd8da04a43590b2a14dc7e6e8e7c2e59a4e_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:06d3e4e24c486f986a1e9b5e01ada1056515c69158b5f894a28923d54d056beb_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:3b5cf3043dae783731ba6369ae1a1f589757157fd1d96132c1aeff0f4dee3349_s390x",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:9f3da05232b30b304f6ad6af10474207d79a86457b13fdd2056720ea48a67e41_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:b231820301e578d7bb4ed79db72e5b5fcb5cb0b62e3e5854fef09535b90b5982_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:2b9391003d6cd3e715666960d0c8412740e7125ccefcd3316f09ff06ad9138d2_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:53975e73eb19b0cd9d7e8685070900d245a6fe4bedfd14748b3456c436189343_amd64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:c531e890645dc3361a72d4e26300761f0b3d69dd2acab10eeadd9604dad6b43b_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:3ea7d3a8a100406dc9d5f4c6cbd8e71dabf98ffddd2b12cee511bdf054745950_ppc64le",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:bf292ed17ee51040bbd68138aea93b7f080c391faab7200ac8c4e11fe00ccdbe_arm64",
"Red Hat OpenShift Container Platform 4.14:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:dbfb510cd665c6bca39e411928979165d24937947f89ea8e6ac658e2e888525f_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.